Bastien Koert <[EMAIL PROTECTED]> 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 "...";
>
> }
>
> Its essentially
nd lets you concentrate on the
code for the table without the worry about the way the row looks
Bastien
From: Jeff Grossman <[EMAIL PROTECTED]>
To: php-db@lists.php.net
Subject: [PHP-DB] Re: Table Output Question
Date: Mon, 14 Nov 2005 18:27:44 -0800
Bastien Koert <[EMAIL PROTECTED]
Bastien Koert <[EMAIL PROTECTED]> wrote:
>
> $row1 = "FF";
> $row2 = "AA";
> $counter = 0;
>
> while ($rows = mysql_fetch_array($result))
> {
> $color = ($counter % 2 ==0) ? $row1 : $row2 ;
>
> echo "...";
>
> }
>
>
> bastien
>
>
> ps: a class css definition would be better here
Sorry, that's shorthand.. is the same as:
is the end tag..
On Monday 14 November 2005 6:26 pm, Jeff Grossman wrote:
> Micah Stevens <[EMAIL PROTECTED]> wrote:
> > You don't have to output two rows.. just do this:
> >
> > $color = "red"; // init first color.
> > while ($row = mysql_fetch_ass
Micah Stevens <[EMAIL PROTECTED]> wrote:
>
> You don't have to output two rows.. just do this:
>
> $color = "red"; // init first color.
> while ($row = mysql_fetch_assoc($data)) {
>if ($color == "red") {
>$color = "blue";
>} else {
>$color = "red";
Sorry if I sounded offended, I'm not. I was just curious because the advantage
wasn't obvious to me. I see your point now though. Thanks for the insight.
On Monday 14 November 2005 6:12 pm, Ajree wrote:
> Micah Stevens wrote:
> > I don't see what's more elegant about. They have a good point tha
Micah Stevens wrote:
I don't see what's more elegant about. They have a good point that you only
need to do one out of the two, but doing it in Javascript versus PHP only has
the advantage that it puts the processing load for that on the client
computer.
Am I missing something?
The second
I don't see what's more elegant about. They have a good point that you only
need to do one out of the two, but doing it in Javascript versus PHP only has
the advantage that it puts the processing load for that on the client
computer.
Am I missing something?
On Monday 14 November 2005 5:25 p
Take a look at this article on ALA:
http://www.alistapart.com/articles/zebratables/
It makes markup more elegant than repeated .
--
Ajree
Jeff Grossman wrote:
I have a table, where each line is the output of a query from a MySQL
database. I do not use borders, so the page is a little difficul