if you mean the rows switching colors i use this.  in this example i'm
getting data from mysql

$rs = 0;
for($i = 0; $i < count($rs); ) {
     while ($rs = mysql_fetch_array($result)) {
          $bgcolor = ($i % 2) ? 'blue' : 'black';
          //do stuff
     $i++;
     }
}

then $bgcolor goes in each <td bgcolor=$bgcolor .......

hth
jd


                                                                                       
                                    
                    "Rodrigo"                                                          
                                    
                    <rodrigo@praticsistem       To:     "PHP" <[EMAIL PROTECTED]>   
                                    
                    as.com.br>                  cc:                                    
                                    
                                                Subject:     [PHP-DB] Table 
question....                                   
                    10/03/2002 08:59 AM                                                
                                    
                    Please respond to                                                  
                                    
                    "Rodrigo"                                                          
                                    
                                                                                       
                                    
                                                                                       
                                    




Hi people, is there a way to print a table with the background switching
colors??? like one blue, the next black, blue, black.......

thanks in advance...  Equipe Pratic Sistemas
       Rodrigo Corrêa
       Fone: (14) 441-1700
       [EMAIL PROTECTED]
       [EMAIL PROTECTED]






--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to