Re: Couple of beginner questions

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

 



At 4:17 PM -0500 1/12/09, Robert Cummings wrote:
On Mon, 2009-01-12 at 16:02 -0500, tedd wrote:

 True, css does not allow numeric classes (like sessions). But, I
 never need them anyway.

 As I provided before:

 http://webbytedd.com/b/color-rows/

 this is my solution for alternating row style.

<tr class="row<?php echo($i++ & 1 );?>">
    <td >abc</td>
    <td >abc</td>
    <td >abc</td>
</tr>

That's just wasteful... Here's better:

<tr class="row<?php echo( $i ^= 1 );?>">
    <td >abc</td>
    <td >abc</td>
    <td >abc</td>
</tr>

Cheers,
Rob.


I like waste. :-)

tedd



--
-------
http://sperling.com  http://ancientstones.com  http://earthstones.com

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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux