Can anyone see the error on this page???
I think it's this line if ($t < $numrows) {
can anyone help me fix this?
$numrows = $number_game;
$t = 0;
if ($t < $numrows) {
$result = mysql_query ("INSERT INTO results_data (`result_id`,`group_id`,`comp_run_id`,`team1_id`,`team2_id`,`game_played`,`team1_score`,`team2_score`,`list_order`,`weekday`) Values ('','$group_id','$comp_run_id','$team1_id','$team2_id','$game_played','$team1_score','$team2_score','$t','$weekday')") or die("INSERT error: ".mysql_error());
$t++;
} else {