$bgcolor = ($count++ & 1) ? "blue" : "black";
Then use $bgcolor in your
---John Holmes...
- Original Message -
From: "Rodrigo" <[EMAIL PROTECTED]>
To: "PHP" <[EMAIL PROTECTED]>
Sent: Thursday, October 03, 2002 8:29 AM
Subject: [PHP-DB] Table question
Hi people, is there a way to
you have to make it yourself...
make a counter, for every row do $counter++;
and the
if ($counter%2==0){
blue
}else{
red
}
the % is the difference math function... you got a rest-value or not...
hope you get it :)
-Original Message-
From: Rodrigo [mailto:[EMAIL PROT
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