I have made a web application in php and mysql. Now I got the responsibility to make an API so that the data will be transferred from the server to iphone. I have no idea for that. Please guide me how to process.
Thanks on advance.
I have made a web application in php and mysql. Now I got the responsibility to make an API so that the data will be transferred from the server to iphone. I have no idea for that. Please guide me how to process.
Thanks on advance.
You will need to create a web service that will respond to requests coming from the app with data from your database. You'll find more info here http://net.tutsplus.com/tutorials/php/creating-an-api-centric-web-application/
You can create a REST API in PHP. The iphone app can call this web service. The web service can respond to the request in json format. It is pretty easy.