I'm getting the error: "Parse error: syntax error, unexpected T_DNUMBER in ...../connect.php on line 8"
I've removed the information I deemed "sensitive" and replaced them with stars for security reasons.
HELP PLEASE!
Here's the code:
<?
//set local variables
$dbhost = "localhost"; ******.****.*******.********.***
$dbuser = "db_user"; ******
$dbpass = "db_pass"; ******
$dbname = "db_name";*****
//connect
$db = mysql_pconnect($dbhost,$dbuser,$dbpass);
mysql_select_db("$dbname",$db);
?>