I have an iPhone app and a backend php web app.
The php site stores some information and i have to use the iPhone app to retrieve that data and show it in it.
So, suppose the iphone app has to show a list of houses for a given user, it would call the folllowing php script
http://example/process.php?user=300
That script makes the sql query and returns an xml with the houses' data.
Should i at any point encrypt anything to prevent spoofing?
Another case, for example admob for each app generates a "publisher id" that is used in the iphone app to "connect" the app with the web app, is that "publisher id" used as a private key to encrypt/decrypt the data sent/received?
Thanks