Best way to save data from app to webserver

You must Login before you can answer or comment on any questions.

I will admit to being fairly new to this and needing some advice.

I need to write a mobile app that allows people to vote on a choice of options.

Basically a list, with a vote button next to each choice.

I need to record the votes on my webserver somewhere, ideally a MySQL database.

I am wondering the best way to store the data from the button push in the mobile app onto the MySQL server on the website.

Any suggestions to point me towards the best way to do this?

My app already needs to be connected to the internet all the time, so it will have some kind of active network connection.

Thanks to anyone that can point me in the right direction

1 Answer

Accepted Answer

I think you can accomplish that with soap web services. Check the kitchen sink example, there you have soap_client_library.js and the soap.js example.

Edit: But you would also need to write web service that will comunicate with db.

Your Answer

Think you can help? Login to answer this question!