I want to login to a MySQL database, the info entered would be user name and password, the PHP and MySQL part is fine but how do I do it from Android?, the MySQL tutorial is a little bit complex for what I need.
Basically what I'm looking for is from Android just enter user name and password, send it to the PHP script and get a response, say "1" for user exists or "0" it doesn't exist on the database.
What does your PHP script expect?
The easiest solution is to just send the user name and password as parameters in the URL (GET request).
The PHP script can then fetch these values from the request and check them.