It ain't much

I starting a database of games. So far I have created a table with the game name, link and date first played and some other fields that don't mean anything to you.

These are $number games we have played: "; print " "; for($i=0; $i<$number; $i++){ $gamename = mysql_result($result,$i,"gamename"); $gamelink = mysql_result($result,$i,"gamelink"); $firstdate = mysql_result($result,$i,"firstdate"); $gamelastupdate = mysql_result($result,$i,"gamelastupdate"); $gameindex = mysql_result($result,$i,"gameindex"); /* print even-numbered rows with a gray background, odd-numbered rows with a white background */ if ($i % 2 == 0) { print ""; } else { print ""; } print ""; } print "
Name of Game Date First Played Index number Last time record was updated
$gamename$firstdate$gameindex$gamelastupdate
"; // Close the database connection mysql_close(); ?>

Click here to check out The Oahu Board Gamers!

The Waianae Board games!

Return to Ray's Game Page.