<table width="95%" class= "border2" >
<tr>
<td>
<?php echo '<table width="100%">
<tr>
<td bgcolor="#ffffff">
<center> <b><u>Forum</u></b> </center>
</td>
</tr>';?>
<?
$i = 0;
while($row = mysql_fetch_assoc($result))
{
$color = (($i%2 == 0) ? '#c7d8e1' : '#f1f4f6');
echo "\n".'
<tr bgcolor="'. $color .'">
<td>
<center>
<a class="links" href="http://www.runningprofiles.com/members/diary/show-month.php?yr={$row['year']}&mon={$dd}">{$row['month']}</a><br />
</center>
</td>
</tr>';
$i++;
}
echo '
</table>';
?>
</td>
</tr>
</table>
|