Graig thanks for the tip, but I won't get it working with the following code (PHP is totaly new for me)
// Initialize the color, use this to start with color 1 or color 2
$bColorChooser = FALSE;
for ($iT=0; $iT<10; $iT++)
While ( $row = mysql_fetch_array ($result) )
{
// Use this inside the loop that prints the rows
//
$bColorChooser=!$bColorChooser;
if ($bColorChooser)
{
$sColorToUse = '#CCCCCC';
}
else
{
$sColorToUse = '#AAAAAA';
};
{
echo("<table border=1><tr gbcolor="'$sColorToUse.'"><td>"'$iT'.$row["naam"]."</td>"."<td>". $row["woonplaats"]."</td></tr></table>" );
}
?>