Hello, Im trying to connect to my database from php. I have my file db.php as my connection file. <?php $host = ''; $username = ''; $password = ''; $database = ''; $connection = mysql_pconnect($host, $username, $password); $mysql_select_db($database, $connection); ?> but it is returning a fatal error. I can not figure out why..I have the respected data within the ''. Any suggestions or help would be greatly appreciated. Thank you, -Tim