I have simple Facebook app done right now (HTML+JS). User can just click and see some pages/products there but now I would like to add also form where they can leave their information (name + email). The app is currently hosted on my web partner server and I would like to still keep it there but where the information would be saved in future would be on different server. Now I'm worried about the security side. What is the best way to send the form data to another server php, process there and save it db? If this is even possible (should be). I'm more designer guy so I feel bit uncertain when comes PHP and personal information.
So make it short: Facebook app (HTML+JS) that is hosted on Server1. Server2 where I have database and where I would like to save the form data. Or would it be just easiest to move the whole app to server2 too?
POSTand build a redirect url withGET. Then send it to a different domain or server. If the info is sensitive handle the form save it to a db and then retrieve the data on a different server from the same database. - Rimble. If the info is sensitive handle the form save it to a db and then retrieve the data on a different server from the same database- Why would you do this? Just make sure you are working secure(SSL). - GuyT