What can I do with this code so that every alternate row
prints white(ffffff) then light grey (eeeeee) then white again?
& what does the echo join command do?
<h1>phoenix contact list</h1>
<table>
<tr>
<th>url</th>
<th>email</th>
<th>Company</th>
<th>Category name</th>
</tr>
<?php while($row = mysql_fetch_row($result)){ ?>
<tr>
<td><?php echo join('</td>
<td>', $row); ?></td>
</tr>
<?php } ?>
</table>