see changes
----------------------------------------------------------------------------
Gfunk - [EMAIL PROTECTED] - http://www.gfunk007.com/
----- Original Message -----
From: "Mike P" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, April 09, 2001 10:08 AM
Subject: [PHP] Row colors
> I can change the column sof a table with the following code but how do I
> change the row colors instead.With the columns I have "i" to manipulate
but
> not with rows.
>
$rowcount = 0;
> while ($row = mysql_fetch_row($result))
> {{
$rowcount++;
if ($rowcount%2==1)
echo "<tr bgcolor=\"blue\">";
else
echo "<tr bgcolor=\"white\">";
> for ($i =1;$i<mysql_num_fields($result);$i++)
> {$cell_color = "#C0C0C0";
> $i % 2 ? 0: $cell_color = "#CCCCCC";
> echo "<td bgcolor=\"$cell_color\">$row[$i]</td>";
> Thanks
> Mike P
> [EMAIL PROTECTED]
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]