1

We are working on an Android-app with a database connection (MySQL). Now we would like to insert data of a user in the database. Does anyone know safe methods to do this? Maybe to use php and soap?

Johan
  • 63
  • 1
  • 6

1 Answers1

1

Did you see this?

How to call a SOAP web service on Android

You could use PHP if you like or any other language that you find most fitting to create a SOAP web service (in the server/web tier). If you don't need to use SOAP and your data/web methods can be expressed as URLs/querystrings you can consider a RESTful web interface.

Community
  • 1
  • 1
cschooley
  • 586
  • 4
  • 10