Showing posts with label free script PHP. Show all posts
Showing posts with label free script PHP. Show all posts

PHP MySQL connection using PDO

Let us start with the basic connection code in PDO for PHP & MySQL

function DatabaseConnect() {
global $dbo;

$details['dbhost_name'] = "localhost";

$details['database'] = "sql_tutorial";
$details['username'] = "root";
$details['password'] = "test";
READ MORE » PHP MySQL connection using PDO