I am developing an app using jqm+phonegap. In my app, user need to set some parameters and calculate results. Now, i want that at the end of calculation, when the user clicks on a button, all the data (all the settings and calculated results) be saved on a remote server. How can i do that? Please help. Should i write some kind of web service and place that on the server and the button click would invoke this service?
Share
Yes, you need to create some form of interface on the target server, which your application then can use to post and pull data. The most common way to achieve this is to create a SOAP/WSDL webservice. There are libraries and frameworks for PHP, Java and all the other technologies. You can easily use those to create what you need.