Re: Table Output Question

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Bastien Koert <bastien_k@xxxxxxxxxxx> wrote:
> Simply put, you create a couple of css classes that make the row look the 
> way you want and then
> 
> while ($rows = mysql_fetch_array($result))
> {
> $color = ($counter % 2 ==0) ? "rowclass1" : "rowclass2" ;
> 
> echo "<tr class='$color'><td>...";
> 
> }
> 
> Its essentially the same thing, just neater and lets you concentrate on the 
> code for the table without the worry about the way the row looks
> 
> Bastien
> 
Thanks again for the information.

Jeff

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


[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux