<?PHP
$db_name ="gsys";
//Leave table_name the same unless you change the table name... which is a bad idea, I hardcoded it multiple places -- Will fix it at a later date : )
$table_name ="brothers";
//CHANGE THESE VALUES TO REFLECT YOUR SETTINGS
$connection = mysql_connect("localhost","USERNAME","PASSWORD") or die(mysql_error());
$db = mysql_select_db($db_name,$connection) or die(mysql_error());
?>