Can someone fix this part of the code. All the game links and stuff won't display.
Code:
<h4>Browsing Game Category, <?=$category;?></h4>
<table id="summaryTbl">
<col id="Location" width="100">
<col id="Offer" width="350">
<col id="Points">
<tr id="gametr1">
<th id="gameth">Thumbnail</th>
<th id="gameth">Title</th>
<th id="gameth">Game Rating</th>
</tr> <?
if($num_rows == 0)
{
echo "That was not a valid category.";
// You can make the above line whatever you wish, it just tells people that no games with that category were found
}
else
{
while($row = mysql_fetch_array($result))
{
// generates a link to each game in this category and inserts a line break each time
echo "<tr class="gametr gametr2">"
<th><img src="<?=$imgsrc;?>"></img></th>
<th><a href="ViewGame.php?gid=<?=$gid;?>"><?=$gametitle;?></a></th>
<th><?=$gamerating;?></th>
</tr><?
}
}
?>







