Automatically create class info for the race table


class race
{

// *******************************************
// ********** constructor ********************
// *******************************************


function race()
{
$this->place = " ";
$this->name = " ";
$this->age = " ";
$this->sex = " ";
$this->town = " ";
$this->timestr = " ";
$this->year = " ";
$this->timeval = " ";
} // end constructor



function init_race( $row)
{

$this->place = $row["place"];
$this->name = $row["name"];
$this->age = $row["age"];
$this->sex = $row["sex"];
$this->town = $row["town"];
$this->timestr = $row["timestr"];
$this->year = $row["year"];
$this->timeval = $row["timeval"];
} // init race

} // class


Text for Data Entry Form: