Date: 09/27/00
- Next message: Shane Wegner: "Re: [PHP] Content-length"
- Previous message: Jason Cox: "RE: [PHP] Content-length"
- Maybe in reply to: Yurais Fernandez Leal: "[PHP] ++Alternate Colors"
- Next in thread: James Atkinson: "Re: [PHP] ++Alternate Colors"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> Any good/easy way to Alternate Row Colors ?
while (not-at-last-row)
{
if ($bgcolor == "white") { $bgcolor = "gray"; }
elseif ($bgcolor == "gray") { $bgcolor = "gray"; }
echo "<TR BGCOLOR='$bgcolor'>\n";
}
Jason
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-general-unsubscribe <email protected> For additional commands, e-mail: php-general-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Shane Wegner: "Re: [PHP] Content-length"
- Previous message: Jason Cox: "RE: [PHP] Content-length"
- Maybe in reply to: Yurais Fernandez Leal: "[PHP] ++Alternate Colors"
- Next in thread: James Atkinson: "Re: [PHP] ++Alternate Colors"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

