Wednesday, January 26th, 2011 |
1 Comment
Below is the simple php code that is required to connect to mysql database and select the database you want to work with.
<?php
//Database Server Details
$username = “enter your username”;
$password = “enter your password”;
$dbname = “enter database name”;
$hostname = “enter your hostname”;
//Connecting to
read more »