RACE DETAILS
\n";
while (list ($header, $value) = each ($_GET))
{
// echo "debug " . $header . " from last page " . $value . "
";
if ( strlen( $value) < 60)
{
$$header = $value;
}
}
} // get vars
include_once( "myconnect.php");
mysql_select_db( "rtg2t_test");
$selectstring = "select * from race where year = \"" . $year . "\" and place = " .
'"' . $place . '" ' ;
$qh = mysql_query( $selectstring);
$already_exists = mysql_num_rows( $qh);
// echo "debug " . $selectstring . $num_rows . "";
$row = mysql_fetch_array ($qh);
$rr = new race;
$rr->init_race( $row);
?>