
<?php
/*
 * Standard mysql connection file copied over to this project on July 17, 2006.  Originally 
 * created on Feb 16, 2006
 */

/* Connect to the MySQL server and the Mathematics database */

@mysql_pconnect("localhost","mathadmin","cagt")
	or die("Could not connect to MySQL server.  So sorry.");

@mysql_select_db("Mathematics")
	or die("Could not access the Mathematics database.  So sorry.")


?>
