I've currently got the following code, which prints out all records in a specified table.
My problem is that I want to switch the style of the table displayed every other record, does anyone know how I could approach this??
do {
echo"
<table width=100% border=0 cellspacing=0 cellpadding=2>
<tr valign=top>
<td width=100 rowspan=2><img src=../images/cfc_directors/$row_rsBWDIM[ID].jpg width=100 height=151 alt=$row_rsBWDIM[Name]></td>
<td><strong>$row_rsBWDIM[Name]</strong> </td>
</tr>
<tr>
<td valign=top><p>$row_rsBWDIM[Description]</p><p><strong>Contact Form - Link</strong></p></td>
</tr>
</table>";
} while ($row_rsBWDIM = mysql_fetch_assoc($rsBWDIM));