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 PasswordGo to top
Client Side (Java)
In this step, only need to reference "JavaPhpDbConnector.jar" on your Java Project as other libraries.
Go to top