Here is the script in the connection page:
//Connect To Database
$hostname="localhost";
$username="longhornuser";
$password="*********";
$dbname="holylonghorns";
mysql_connect($hostname,$username, $password) OR DIE ("Unable to connect to database! Please try again later.");
mysql_select_db($dbname);