Install

The installation process is divided into two steps, one on the server side (PHP) and one on the client side (Java). Both steps are really simple.

View project on GitHub

Server Side (PHP)

On the server side, only need to copy the both PHP files into the same folder and later, configure the RequestHandler.php file with your database credentials

RequestHandler.php

//
//  IMPORTANT INFO FOR CONFIG AND ACCESS TO DATABASE
//

// DB DATA
$dbType = "mysql";
$dbName = "test";		// Name of the Database
$host = "127.0.0.1";		// Host
$charset = "UTF8";		// Encoding
$username = "YourDBUser";	// Database Username
$password = "YourDBPassword";	// Database Password
				
Go to top

Client Side (Java)

In this step, only need to reference "JavaPhpDbConnector.jar" on your Java Project as other libraries.

Go to top