does anyone know how I would go about sending some data, to an external php page which will then pick up the data and process it.
I have a php page on one server which will send a userID and a date to a php page on a different server which will pick the data up and insert it into the mysql database. I don’t want to redirect the user though from the page that they are on and if possible encrypt the data
The best way to do this is use Json format to send the data.
You can compress it using gzcompress and mcrypt_encrypt to encrypt the data.
If you are storing passwords, best way is to hash it than any encryption.