[snip]
 
> if($r = !$r)
> 
> it is a conditional test.
> 
> ? foo : bar;
> 
> ...is the ternary operation. Just wanted to clean up the usage there.

Did I miss something? The code I saw was the following:

    <TR class=<?php echo ($r = !$r) ? "dataRow1" : "dataRow2"; ?> >

And that is definitely using the ternary operator. 
[/snip]

No, you didn't miss anything. I was just pointing out that the ternary
operation starts with the ?

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

Reply via email to