Need some help please. My my site isn't connecting with the database.
Here my code:
<?php
$serverName="localhost";
$dbusername="root";
$dbpassword="";
$dbname="bank_db";
mysql_connect($serverName,$dbusername,$dbpassword)/* or die('the website
is down for maintainance')*/;
mysql_select_db($dbname) or die(mysql_error());
?>
Would really appreciate the help.
Thanks!