/** * Connect to the mysql database. */ $host = 'localhost'; $user = 'casteven'; $pwd = 'SPARTA7729'; $dbName = 'awpse'; $conn = mysql_connect($host, $user, $pwd) or die(mysql_error()); mysql_select_db($dbName, $conn) or die(mysql_error()); ?>