fatmasiraj
fatmasiraj

Reputation: 60

should I use PHP to connect my android app to mySQL db

I want to connect my android application to an external mySQL database and I found that I have to use web service to achieve that using php code. but I used to use java, Is there in java any equivalent to php code??

Upvotes: 1

Views: 175

Answers (1)

Relsell
Relsell

Reputation: 771

It depends on how the server side is implemented. Both php and java can implement the server side code and access MYSQL DB. Through your android client you dont' have to be concerned about the server side (If the server is not yours and just responds to your queries) , you have to make HTTP request POST or GET to achieve it.

Upvotes: 1

Related Questions