I am basically trying to retrieve some data from a MySql server, and display them on my iphone Let's say i have a table named "car" and i need to send 10 rows of my table to my iphone.
1- Is there any possible way to send an actual array of objects "cars" to my iphone. Or does it have to be a string.
2- If it has to be a string, what is the best format to use? XML or JSON, or any other format?
3- Is SOAP the same as a web Services? if not what's the difference?
4- What is the best language to use, to handle the data transfer between iPhone and database? is it a good idea to use php?