Busy with an interface between business application and php web app. The business application will send a products file to the server which will be uploaded a few times a day. I want to append a unique key to the url that the web app first checks before doing anything. So business application and web app must use the same algorithm , to generate a simple key . any ideas ?
e.g.
www.phpwebapp/uploads/products/&file='C:/products.csv'&key='Abg1h35'
EDIT
Both apps need to produce the same key, hence i need a simple algorithim, even is its just based on the current day.
e.g.
date() + SALT = 'key';
Something a bit better than that.