Game Schedule

"; $prevRound = ""; while ($res = mysql_fetch_assoc($games)) { if ($prevRound != $res['round']) { echo "Round ".$res['round'].""; $prevRound = $res['round']; } $gameid = $res['id']; $hometeam = $teamHash[$res['playerHome']]; $homeplayer = $playerHash[$res['playerHome']]; $awayteam = $teamHash[$res['playerAway']]; $awayplayer = $playerHash[$res['playerAway']]; $score = "Submit Results"; if ($res['scoreHome'] != "" && $res['scoreAway'] != "") $score = "".$res['scoreAway']." - ".$res['scoreHome'].""; echo "
   ".$awayteam." (".$awayplayer.") vs. ".$hometeam." (".$homeplayer.")$score
"; } mysql_free_result($games); echo ""; include('footer.php'); ?>