<?
//enter your MySQL database host name, often it is not necessary to edit this line
$db_host = "localhost";//
//enter your MySQL database username
$db_username = "lhubbar4_samik";
//enter your MySQL database password
$db_password = "samik";
//enter your MySQL database name
$db_name = "lhubbar4_truck";
////////////////////////////////////////////////////////////
////// do not edit below this line ///////
///////////////////////////////////////////////////////////
//connect to the database server
//$dbh=mysql_connect ("localhost", "root", "saurav") or die ('I cannot connect to the database because: ' . mysql_error());
//mysql_select_db ("member") or die("could not found DB.");
$dbh = mysql_connect($db_host, $db_username, $db_password) or die(mysql_error());
//select database
mysql_select_db($db_name, $dbh) or die("could not found DB.");
?>