I want to develop an iPhone native app, that sync with a remote DB.Is it possible to develop this application using PhoneGap.If I use PhoneGap, how do I get data from an externa
PhoneGap allows you to run JavaScript and HTML applications on the iPhone. all your PHP code will have to reside in a remote server.
To get data from the server you have to use the XMLHttpRequest object or something more user friendly like jquery's $.get() or $.post() functions.
XMLHttpRequest
$.get()
$.post()