New Additions
o) $beer
"; } ?>
 
Beer List
Here are some of the beers that I have had the pleasure of trying, though not a compete list, as sometimes, I become 'distracted' after trying a few. This listing of beers is not very technical and is intended solely for entertainment purposes.
The Table
This table can be dynamically sorted in a number of ways just by clicking on a column header. To reverse the sort order for a given column, click on it twice in a row.

Total Beers
 
Updated: 27 September 2010
"); echo ""; echo ""; echo "The Beer List"; echo ""; echo ""; echo "BeerName"; echo "Brewery"; echo "Color"; echo "Origin"; echo "Comment"; echo ""; echo ""; echo ""; while ($row = mysql_fetch_array($retid)) { $beer = $row["beerName"]; $brwy = $row["brewery"]; $clor = $row["color"]; $orig = $row["origin"]; $comm = $row["comments"]; $numi = $numi + 1; $isOdd = ( ($numi % 2) == 1 ? true : false ); if ( $isOdd == True ) { echo (""); } else { echo ("$beer"); echo ("$brwy"); echo ("$clor"); echo ("$orig"); echo ("$comm"); echo (""); } echo (""); echo (""); } ?>