<?php
/*
 * Created on Feb 16, 2006
 */

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

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

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


?>
