View Single Post
Old 11-17-2008, 01:29 PM   #3 (permalink)
enzochi@gmail.com
The Visitor
 
Join Date: Aug 2008
Posts: 4
Thanks: 0
enzochi@gmail.com is on a distinguished road
Default

could just do a mod oppr:
PHP Code:
for($i=0;mysql_num_rows($rsSomthing)>$i;$i++){
   
$color "#ededed";
   if(
$i%2){
      
$color "#ccc";
   }
   
$i++;
   echo 
"<div style='background:".$color."'>something here</div>\n";

should do the trick.
enzochi@gmail.com is offline  
Reply With Quote