![]() |
![]() |
|
| |
|
Test --> Enter Race Results
Test-->>Print Report
Test -->>Delete Race Entry
HELP
Wind:
Skipper: Select from drop down box Elapsed time: Enter HH MM SS SAVE: To save the entry ADD: To add and entry/ skipper DELETE: To delete an entry/ skipper
|
\n";
echo "\n";
$host = $host;
$login_name = $strlogin;
$password = $strpass;
MySQL_connect("$host","$login_name","$password");
mysql_select_db("hiycorg_hiyc") or die("Could not find database");
$strQuery = "select $intIdField, $strNameField from $strTableName order by $strOrderField $strMethod";
$rsrcResult = mysql_query($strQuery);
while($arrayRow = mysql_fetch_assoc($rsrcResult))
{
$strA = $arrayRow["$intIdField"];
$strB = $arrayRow["$strNameField"];
echo "\n";
}
echo "";
}
?>