[GUIDE] Android Client-Server Communication (PHP-MYSQL REST API)

Search This thread

basavak

New member
Sep 23, 2010
1
0
Thanks, nice tutorial

Nice tutorial .... Thanks

I was able to reproduce the null result - it means that the result was not available in the database. You'll want to double check the value you are passing to the script in Postman. (When I used 'FirstNameToSearch' and 'test' - I got a correct result. However, when I used 'testa', I got a null result.)


You can try adding this into the PHP script to catch this problem:


Code:
#Get the first row of the results
$row = mysql_fetch_row($userdetails);

[B]#Check to see if a result was returned.
if(!$row){
	echo 'User does not exist';
	exit;
}[/B]


I also noticed a few things in your PHP script:

  1. In your screenshot, your table name appears to be 'Myapp', however in your PHP script, it looks like you are using 'mytable'
  2. When you build the result array at the end, you are trying to access a column that doesn't exist:


    This code tries to access an 8th column/index:
    Code:
    	'pid' => $row[1],
    	'name' => $row[2],
    	'UID' => $row[3],
    	'mobile' => $row[4],
            'description' => $row[5],
            'created_at' => $row[6],
            'updated_at' => $row[7],

    You only have seven columns, so it should be:

    Code:
    	'pid' => $row[0],
    	'name' => $row[1],
    	'UID' => $row[2],
    	'mobile' => $row[3],
            'description' => $row[4],
            'created_at' => $row[5],
            'updated_at' => $row[6],



Good catch - Thanks! I'll update the project asap.
 

FrozenRocker

New member
Feb 5, 2014
1
0
Thank you for this great guide!

I have one more question. How to make program and script to update Age and Points for FirstName (ex. John)?
How can I do that?

Thanks in advance.
 

Nikotiko

Member
Aug 13, 2011
34
7
nikosite.net
Thank you for this great guide!

I have one more question. How to make program and script to update Age and Points for FirstName (ex. John)?
How can I do that?

Thanks in advance.
For a function like that you would like to have the page password protected, so I recommend you update those fields using phpmyadmin, because it's a ready tool for that.

However, the sql code for that is (for example):
Let's say your table name is tableName.

"UPDATE tableName SET Age = ?, Points = ? WHERE FirstName = ?"

The question marks represent parameter tokens which you must define in the php script, so for that to work you need to use the php script guide I wrote in this post.
I'll be more than happy to assist further if necessary.
 
Last edited:

andresgouts

New member
Mar 6, 2014
1
0
Login

Hi!

first sorry for my poor english.

Well, im trying to do a login form with this guide, and I get the app make the conection with the db and bring the results, but when i try to pass to the other activity and show the information of the user the aplication fail.


I hope you can help me, thanks.
 

alobo

Senior Member
Mar 20, 2012
163
217
Waterloo
www.oadigital.ca
Hi!

first sorry for my poor english.

Well, im trying to do a login form with this guide, and I get the app make the conection with the db and bring the results, but when i try to pass to the other activity and show the information of the user the aplication fail.


I hope you can help me, thanks.

What is the error you encounter? If you post a logcat and a code snippet, I can try to help.
 

mytechsol

New member
Mar 27, 2014
1
0
Who are paid service providers available for this same requirement?

Hi,

I am in need of same setup, sending and receiving database from server.
I would like to go with Paid Service provider like Amazon.
But I don't know which service to be subscribed for this requirement and who are other competitors for the same service.
My data isn't huge, Language planned to use, PHP, MySQL, ASP, .NET.

Could someone suggest me on which could be best option?
 

ltlexcellent

New member
Nov 22, 2014
1
0
Multiple result

Hi I am quite new in this area. In my case, if there are 2 first names "John", how could i receive it in the textview?
Anyway, Nice tutorial!!
 

Ather

Retired Senior Moderator
May 26, 2007
4,085
1,014
33
is there anyway to load an image from mysql db? i made an app to manage records and i need a pciture loaded aswell (if i save it in DB as blob) what would be the best way to retrieve ID's picture?
 

Edieneo

Member
Jan 30, 2013
7
0
Hey XDA, this is my first guide and first proper contribution to the community!

I’m writing this because I've seen many people ask a variation of the question: “How can my app get information from a database?”

This guide is intended for those who have created their first app – it is assumed you have a working development environment and are reasonable comfortable with the Android SDK and Java. I'm also assuming little to no knowledge of PHP and MYSQL

This guide walks you through:
  1. Setting up a database and a PHP script
  2. Testing the server
  3. Accessing it from Android.
To make it relevant, we're going to use data that we might see in an actual app: First & Last Name, Age and Points.


Requirements:
  1. Android Device*
  2. Computer*
  3. Apache/PHP/MySQL Server – I use WAMP (for Windows) (PHP v 5.4)
  4. Postman Rest Client for Google Chrome
(*Both must be connected to the same network!)

This guide will help you setup a local server. If you want to host your script and database online, you will have to purchase paid hosting.

Let's get started!

First off, what is a RESTful service?
According to Wikipedia: A RESTful web API (also called a RESTful web service) is a web API implemented using HTTP and REST principles.


How it works:

picture.php


A breakdown of the steps:
  1. The client makes a request using a HTTP POST to a server
  2. The PHP script queries the MYSQL server
  3. The PHP script gets the SQL data
  4. The PHP script puts the data into an array and assigns keys for the values. The script then outputs the data as a JSON array. JSON (JavaScript Object Notation) is a standard for data exchange, and formats the data in a way both humans and computers can easily read.
  5. The app parses the JSON and displays the data.

Code!

Part 1: The Server
We’re going to start by setting up the server!

Install WAMP server. Leave the settings at the default values.

Start WAMP server and let it come online.
Try and open http://localhost/phpmyadmin/ - if you installed it correctly, you should be greeted by the phpMyAdmin welcome screen. We're going to be using phpMyAdmin to create our database.

picture.php



Creating the Database:

Create a database called ‘mytestdatabase’. Now click the SQL tab, paste in the following SQL Code and hit run. This will create a test table called ‘users’ and fill it with data.

The table contains 5 columns: id, FirstName, LastName, Age, Points. It has 6 rows of sample data.


SQL Code:
Code:
-- phpMyAdmin SQL Dump
-- version 3.5.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jun 15, 2013 at 10:07 PM
-- Server version: 5.5.24-log
-- PHP Version: 5.3.13

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";


/*!40101 SET      [user=714032]@old_[/user]CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET      [user=714032]@old_[/user]CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET      [user=714032]@old_[/user]COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;

--
-- Database: `MyTestDatabase`
--

-- --------------------------------------------------------

--
-- Table structure for table `users`
--

CREATE TABLE IF NOT EXISTS `users` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `FirstName` text NOT NULL,
  `LastName` text NOT NULL,
  `Age` int(11) NOT NULL,
  `Points` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;

--
-- Dumping data for table `users`
--

INSERT INTO `users` (`id`, `FirstName`, `LastName`, `Age`, `Points`) VALUES
(1, 'John', 'Doe', 25, 61),
(2, 'Glen', 'Willis', 55, 3145),
(3, 'Helen', 'Cook', 35, 1232),
(4, 'Karen', 'Johnson', 20, 6456),
(5, 'Bill', 'Cooper', 60, 3856),
(6, 'Mary', 'Gomez', 30, 5422);

/*!40101 SET CHARACTER_SET_CLIENT      [user=714032]@old_[/user]CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS      [user=714032]@old_[/user]CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION      [user=714032]@old_[/user]COLLATION_CONNECTION */;

Your database should now look like this:

picture.php



We’re now ready to move on to the PHP!

Open up your WWW directory (C:\wamp\www) and create a new folder called ‘clientservertest’. In this folder, create a file called ‘login.php’.
Paste the following code into the file. (The PHP code is commented so you can follow what is going on)


PHP:
<?php

	#Ensure that the client has provided a value for "FirstNameToSearch"
	if (isset($_POST["FirstNameToSearch"]) && $_POST["FirstNameToSearch"] != ""){
		
		#Setup variables
		$firstname = $_POST["FirstNameToSearch"];
		
		#Connect to Database
		$con = mysqli_connect("localhost","root","", "mytestdatabase");
		
		#Check connection
		if (mysqli_connect_errno()) {
			echo 'Database connection error: ' . mysqli_connect_error();
			exit();
		}

		#Escape special characters to avoid SQL injection attacks
		$firstname = mysqli_real_escape_string($con, $firstname);
		
		#Query the database to get the user details.
		$userdetails = mysqli_query($con, "SELECT * FROM users WHERE FirstName = '$firstname'");

		#If no data was returned, check for any SQL errors
		if (!$userdetails) {
			echo 'Could not run query: ' . mysqli_error($con);
			exit;
		}

		#Get the first row of the results
		$row = mysqli_fetch_row($userdetails);

		#Build the result array (Assign keys to the values)
		$result_data = array(
			'FirstName' => $row[1],
			'LastName' => $row[2],
			'Age' => $row[3],
			'Points' => $row[4],
			);

		#Output the JSON data
		echo json_encode($result_data); 
	}else{
		echo "Could not complete query. Missing parameter"; 
	}
?>



Testing the Script:

Try accessing http://localhost/clientservertest/login.php from your browser. Do you get this message:

"Could not complete query. Missing parameter"

Then it’s working! The script is looking for a POST variable called “FirstNameToSearch” – we didn't provide any, so it did't work!
To finish testing the script, open the Postman-REST client.
Set it up like so:

Request URL: http://localhost/clientservertest/login.php
Type: POST
Key: FirstNameToSearch
Value: John

Hit send, and you should see this:
Code:
{"FirstName":"John","LastName":"Doe","Age":"25","Points":"61"}

Congrats – your server just returned a result! Try some of the other names in the database (Glen, Helen, Karen, Bill, Mary) and see how their data is returned.

Note: Before we move on to the Android section, we’re going to have to put our WAMP server online. Click the WAMP icon in the taskbar and select 'Put Online'.
Find your computers local network IP address and insert it into the URL like so: http://192.168.1.112/clientservertest/login.php

You should be able to access the script. If this doesn't work, try turning off your firewall - it could be blocking the server.


Part 2: Android
We’re now going to use our Android device to access the web server instead of the Postman client.

I'm not going to go into detail with the boilerplate UI code - I've attached the source code to this post so you can download the project files and browse through them.

Note: Android 3.x+ cannot perform Network operations on the main thread. To solve this, we have to multithread our program. To keep this as simple as possible, we’re going to use an AsyncTask. Again, the code for this can be found in the project download.

Inside of the AsyncTask, we have the most important code - where we create and execute a HTTP POST in Java.


Creating and Executing a HTTP POST in Java:
We have to first setup the name-value pairs for our POST variables. In this case, we use "FirstNameToSearch" as our Key.

Code:
ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("FirstNameToSearch", strNameToSearch));


The following code sets up connection timeouts (15 seconds) and creates a HttpClient and HttpPost pointing to our url (http://192.168.1.112/clientservertest/login.php)

Code:
//Create the HTTP request
HttpParams httpParameters = new BasicHttpParams();

//Setup timeouts
HttpConnectionParams.setConnectionTimeout(httpParameters, 15000);
HttpConnectionParams.setSoTimeout(httpParameters, 15000);			

HttpClient httpclient = new DefaultHttpClient(httpParameters);
HttpPost httppost = new HttpPost("http://192.168.1.112/clientservertest/login.php");
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

The following code executes the POST, gets the result and converts it to a string:

Code:
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();

String result = EntityUtils.toString(entity);

Finally, the following code creates a JSON object from the result string and extracts our data:

Code:
// Create a JSON object from the request response
JSONObject jsonObject = new JSONObject(result);

//Retrieve the data from the JSON object
strFirstName = jsonObject.getString("FirstName");
strLastName = jsonObject.getString("LastName");
intAge = jsonObject.getInt("Age");
intPoints = jsonObject.getInt("Points");


picture.php



That's it. It's so simple!


Where do we take it from here?
This combination of PHP/MYSQL is quite powerful. I'd recommend that you learn more about these technologies and build upon the demo in this guide. PHP Tutorials & MySQL Tutorials

Ideas for practice apps:
  • Online notes application - Sync your notes to the cloud
  • Build an Activation Server - Users can activate an app with a key


Feedback
Please feel free to leave any followup questions, comments or suggestions! I'll try my best to respond!
You can find the source code over at GitHub. Have fun! (If you fix a bug, please send a pull request)







I cant access my database through Postman? It shown "Could not complete query. Missing parameter" , I did everything, I change the type, put the URL and key also the value that 'John' as your tutorial.
 

Cooper Bryant

New member
Nov 23, 2018
3
0
Itspresso - Digital agency | Technology served with hot designs

The following code executes the POST, gets the result and converts it to a string:

Code:
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();

String result = EntityUtils.toString(entity);
 

Top Liked Posts

  • There are no posts matching your filters.
  • 41
    Hey XDA, this is my first guide and first proper contribution to the community!

    I’m writing this because I've seen many people ask a variation of the question: “How can my app get information from a database?”

    This guide is intended for those who have created their first app – it is assumed you have a working development environment and are reasonable comfortable with the Android SDK and Java. I'm also assuming little to no knowledge of PHP and MYSQL

    This guide walks you through:
    1. Setting up a database and a PHP script
    2. Testing the server
    3. Accessing it from Android.
    To make it relevant, we're going to use data that we might see in an actual app: First & Last Name, Age and Points.


    Requirements:
    1. Android Device*
    2. Computer*
    3. Apache/PHP/MySQL Server – I use WAMP (for Windows) (PHP v 5.4)
    4. Postman Rest Client for Google Chrome
    (*Both must be connected to the same network!)

    This guide will help you setup a local server. If you want to host your script and database online, you will have to purchase paid hosting.

    Let's get started!

    First off, what is a RESTful service?
    According to Wikipedia: A RESTful web API (also called a RESTful web service) is a web API implemented using HTTP and REST principles.


    How it works:

    picture.php


    A breakdown of the steps:
    1. The client makes a request using a HTTP POST to a server
    2. The PHP script queries the MYSQL server
    3. The PHP script gets the SQL data
    4. The PHP script puts the data into an array and assigns keys for the values. The script then outputs the data as a JSON array. JSON (JavaScript Object Notation) is a standard for data exchange, and formats the data in a way both humans and computers can easily read.
    5. The app parses the JSON and displays the data.

    Code!

    Part 1: The Server
    We’re going to start by setting up the server!

    Install WAMP server. Leave the settings at the default values.

    Start WAMP server and let it come online.
    Try and open http://localhost/phpmyadmin/ - if you installed it correctly, you should be greeted by the phpMyAdmin welcome screen. We're going to be using phpMyAdmin to create our database.

    picture.php



    Creating the Database:

    Create a database called ‘mytestdatabase’. Now click the SQL tab, paste in the following SQL Code and hit run. This will create a test table called ‘users’ and fill it with data.

    The table contains 5 columns: id, FirstName, LastName, Age, Points. It has 6 rows of sample data.


    SQL Code:
    Code:
    -- phpMyAdmin SQL Dump
    -- version 3.5.1
    -- http://www.phpmyadmin.net
    --
    -- Host: localhost
    -- Generation Time: Jun 15, 2013 at 10:07 PM
    -- Server version: 5.5.24-log
    -- PHP Version: 5.3.13
    
    SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
    SET time_zone = "+00:00";
    
    
    /*!40101 SET      [user=714032]@old_[/user]CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
    /*!40101 SET      [user=714032]@old_[/user]CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
    /*!40101 SET      [user=714032]@old_[/user]COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
    /*!40101 SET NAMES utf8 */;
    
    --
    -- Database: `MyTestDatabase`
    --
    
    -- --------------------------------------------------------
    
    --
    -- Table structure for table `users`
    --
    
    CREATE TABLE IF NOT EXISTS `users` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `FirstName` text NOT NULL,
      `LastName` text NOT NULL,
      `Age` int(11) NOT NULL,
      `Points` int(11) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;
    
    --
    -- Dumping data for table `users`
    --
    
    INSERT INTO `users` (`id`, `FirstName`, `LastName`, `Age`, `Points`) VALUES
    (1, 'John', 'Doe', 25, 61),
    (2, 'Glen', 'Willis', 55, 3145),
    (3, 'Helen', 'Cook', 35, 1232),
    (4, 'Karen', 'Johnson', 20, 6456),
    (5, 'Bill', 'Cooper', 60, 3856),
    (6, 'Mary', 'Gomez', 30, 5422);
    
    /*!40101 SET CHARACTER_SET_CLIENT      [user=714032]@old_[/user]CHARACTER_SET_CLIENT */;
    /*!40101 SET CHARACTER_SET_RESULTS      [user=714032]@old_[/user]CHARACTER_SET_RESULTS */;
    /*!40101 SET COLLATION_CONNECTION      [user=714032]@old_[/user]COLLATION_CONNECTION */;

    Your database should now look like this:

    picture.php



    We’re now ready to move on to the PHP!

    Open up your WWW directory (C:\wamp\www) and create a new folder called ‘clientservertest’. In this folder, create a file called ‘login.php’.
    Paste the following code into the file. (The PHP code is commented so you can follow what is going on)


    PHP:
    <?php
    
    	#Ensure that the client has provided a value for "FirstNameToSearch"
    	if (isset($_POST["FirstNameToSearch"]) && $_POST["FirstNameToSearch"] != ""){
    		
    		#Setup variables
    		$firstname = $_POST["FirstNameToSearch"];
    		
    		#Connect to Database
    		$con = mysqli_connect("localhost","root","", "mytestdatabase");
    		
    		#Check connection
    		if (mysqli_connect_errno()) {
    			echo 'Database connection error: ' . mysqli_connect_error();
    			exit();
    		}
    
    		#Escape special characters to avoid SQL injection attacks
    		$firstname = mysqli_real_escape_string($con, $firstname);
    		
    		#Query the database to get the user details.
    		$userdetails = mysqli_query($con, "SELECT * FROM users WHERE FirstName = '$firstname'");
    
    		#If no data was returned, check for any SQL errors
    		if (!$userdetails) {
    			echo 'Could not run query: ' . mysqli_error($con);
    			exit;
    		}
    
    		#Get the first row of the results
    		$row = mysqli_fetch_row($userdetails);
    
    		#Build the result array (Assign keys to the values)
    		$result_data = array(
    			'FirstName' => $row[1],
    			'LastName' => $row[2],
    			'Age' => $row[3],
    			'Points' => $row[4],
    			);
    
    		#Output the JSON data
    		echo json_encode($result_data); 
    	}else{
    		echo "Could not complete query. Missing parameter"; 
    	}
    ?>



    Testing the Script:

    Try accessing http://localhost/clientservertest/login.php from your browser. Do you get this message:

    "Could not complete query. Missing parameter"

    Then it’s working! The script is looking for a POST variable called “FirstNameToSearch” – we didn't provide any, so it did't work!
    To finish testing the script, open the Postman-REST client.
    Set it up like so:

    Request URL: http://localhost/clientservertest/login.php
    Type: POST
    Key: FirstNameToSearch
    Value: John

    Hit send, and you should see this:
    Code:
    {"FirstName":"John","LastName":"Doe","Age":"25","Points":"61"}

    Congrats – your server just returned a result! Try some of the other names in the database (Glen, Helen, Karen, Bill, Mary) and see how their data is returned.

    Note: Before we move on to the Android section, we’re going to have to put our WAMP server online. Click the WAMP icon in the taskbar and select 'Put Online'.
    Find your computers local network IP address and insert it into the URL like so: http://192.168.1.112/clientservertest/login.php

    You should be able to access the script. If this doesn't work, try turning off your firewall - it could be blocking the server.


    Part 2: Android
    We’re now going to use our Android device to access the web server instead of the Postman client.

    I'm not going to go into detail with the boilerplate UI code - I've attached the source code to this post so you can download the project files and browse through them.

    Note: Android 3.x+ cannot perform Network operations on the main thread. To solve this, we have to multithread our program. To keep this as simple as possible, we’re going to use an AsyncTask. Again, the code for this can be found in the project download.

    Inside of the AsyncTask, we have the most important code - where we create and execute a HTTP POST in Java.


    Creating and Executing a HTTP POST in Java:
    We have to first setup the name-value pairs for our POST variables. In this case, we use "FirstNameToSearch" as our Key.

    Code:
    ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
    nameValuePairs.add(new BasicNameValuePair("FirstNameToSearch", strNameToSearch));


    The following code sets up connection timeouts (15 seconds) and creates a HttpClient and HttpPost pointing to our url (http://192.168.1.112/clientservertest/login.php)

    Code:
    //Create the HTTP request
    HttpParams httpParameters = new BasicHttpParams();
    
    //Setup timeouts
    HttpConnectionParams.setConnectionTimeout(httpParameters, 15000);
    HttpConnectionParams.setSoTimeout(httpParameters, 15000);			
    
    HttpClient httpclient = new DefaultHttpClient(httpParameters);
    HttpPost httppost = new HttpPost("http://192.168.1.112/clientservertest/login.php");
    httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

    The following code executes the POST, gets the result and converts it to a string:

    Code:
    HttpResponse response = httpclient.execute(httppost);
    HttpEntity entity = response.getEntity();
    
    String result = EntityUtils.toString(entity);

    Finally, the following code creates a JSON object from the result string and extracts our data:

    Code:
    // Create a JSON object from the request response
    JSONObject jsonObject = new JSONObject(result);
    
    //Retrieve the data from the JSON object
    strFirstName = jsonObject.getString("FirstName");
    strLastName = jsonObject.getString("LastName");
    intAge = jsonObject.getInt("Age");
    intPoints = jsonObject.getInt("Points");


    picture.php



    That's it. It's so simple!


    Where do we take it from here?
    This combination of PHP/MYSQL is quite powerful. I'd recommend that you learn more about these technologies and build upon the demo in this guide. PHP Tutorials & MySQL Tutorials

    Ideas for practice apps:
    • Online notes application - Sync your notes to the cloud
    • Build an Activation Server - Users can activate an app with a key


    Feedback
    Please feel free to leave any followup questions, comments or suggestions! I'll try my best to respond!
    You can find the source code over at GitHub. Have fun! (If you fix a bug, please send a pull request)


    3
    Additional Information

    Changelog

    November 3, 2013
    • Added a link to the GitHub repository.

    June 26, 2013
    • Updated PHP Code. It's more reliable and uses the newer MySQL APIs. Thanks to @dbarrera & @vijai2011

    July 7, 2013
    • Updated the Android project and added Internet permissions (ClientServerRESTDemo v2.zip)
    2
    If the PHP is available for public use, with that kind of mysql connection it's extremely prone to mysql injection, and even with escape, PDO is advised to be used.

    Prepared statements prevent all injections, and I've rewritten the relevant PHP here:

    Code:
    //setup variables
    	$firstname = trim($_POST["FirstNameToSearch"]); // trim the string to remove spaces from beginning and end (never trust the user)
    	
    //connect to Database
    	try // try will attempt a connection
    	{		
    		$con = PDO("mysql:host=localhost;dbname=mytestdatabase","username","password");
    	}
    	catch(PDOException $e) // catch an error if try fails, like wrong credentials or no db found
    	{
    		// stop execution and print the error
    		die("Error: ". $e->getMessage()) 
    	}
    	
    	// set PDO error mode to exception. errors will throw exceptions when encountered
    	$con->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    
    	// set charset, utf8 helps avoid issues
    	$con->exec("SET NAMES utf8");
    
    	// run your query and select only the columns that are needed, saves memory and makes understanding the database structure easier!
    	$query = $con->prepare("SELECT FirstName, LastName, Age, Points FROM users WHERE FirstName = ? LIMIT 1"); 
    	
    	// bind the query variable to the first ?-token in the query
    	$query->bindParam(1, $firstname); 
    	
    	// run the query
    	$query->execute(); 
    
    	echo json_encode($query->fetch()); // print the result encoded in json. fetch will return an array

    You can ask me for more info if there's anything unclear :)

    You can thank @vijai2011 for hinting me about the thread!
    2
    Changing the password to a more simple one fixed it. Thanks! I used the following line to change the password:
    Code:
    $ mysqladmin -u root -p'oldpassword' password newpass

    Yeah, your password had the $ character which for php is the variable declaring character...
    @Alkonic tonight I will try to separate the DoPOST class from the activity... This should help the code be reused for other activities within the same app (if needed)...

    Sent from my GT-S5830M using Tapatalk 2
    2
    Already tried that... No go... Had to write the whole thing using w3schools example code as base... Just resolved a couple minutes ago and completed the project (it can be viewed @ Github:CardManager (App) and cardmanager_json (Web Service, only principal.php is the one handling the whole thing))...

    Maybe a good add to the tutorial would be to have a config.php file with the user, passwd, database and table data calling it through require_once()... The DBConexion and DBGestion files (in my github) are supposed to do that, but didn't work either (hence doing the principal.php code all over again)...

    Interesting.. I'll take a look at at your script, revisit the W3 tutorials, and then re-write mine. It's really rudimentary and tends to fail easily. I wanted to write about the config.php, however, I also wanted to keep this guide as simple as possible for newer users. Maybe I'll add in an advanced section.
    I'll update the guide in a few days, as I'm right in the middle of exams :/

    Thanks for the feedback!