Re: [PHP-DB] Table question....

2002-10-03 Thread 1LT John W. Holmes
$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

RE: [PHP-DB] Table question....

2002-10-03 Thread Snijders, Mark
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

Re: [PHP-DB] Table question....

2002-10-03 Thread Jeffrey_N_Dyke
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