Hi there,
How does one create the effect where all the records in a table will be printed out , but each record has got a different bg color in a <td> tag. Almost like these records that you are reading. The one records has a white bg colour and the other has a blue bg colour.
Thank you very much !
Arnold
$color= "FFFFFF";
while ( condition ) { if ($color=="FFFFFF") $color="AAAAAA" else $color="FFFFFF";
//get data to post echo "<td bgcolor=\"#$color\">your stuff here</td>";
}
Hope this help It's one possibility :-)