I'm developing android app, and need some webservices to communicate with my remote mysql database. I made same work and I created json webservice with php. But it seems complex to me. Because I want to use methods in webservice like .net webservice (asmx). Is there any solution for this problem. My server runs mysql and php. Is Json best solution for this problem?
Asked
Active
Viewed 2,795 times
2 Answers
4
Check out this link. It provides all the steps to send and receive data to and from MySql database using php. It helped me a lot when I developed the gps tracker app. Try it!

Ankit Saxena
- 2,309
- 2
- 18
- 20
0
If your application work with textual data, JSON is a good solution since android SDK provides a good support for it as well as PHP. And you can easily use PHP and MySQL together because of PHP’s strong integration with MySQL.

Marcin S.
- 11,161
- 6
- 50
- 63