I keep getting this it is a script I downloaded, Can't figure out the error! I loaded it on one site and it worked fine! Any suggestions?
<?php
$MySqlHostname = "localhost"; //the name of your host - if its local leave it as is.
$MySqlUsername = "mycashbo_money"; //the username to your database.
$MySqlPassword = "@DBpass"; //the password to your database.
$MySqlDatabase = "mycashbo_money"; //the name of your database.
// do not edit below this line!!
///////////////////////////////////////////////////////////////////////
$dblink=MYSQL_CONNECT($MySqlHostname, $MySqlUsername, $MySqlPassword) or die("Could not connect to database");
@mysql_select_db("$MySqlDatabase") or die( "Could not select database");
?>