Jeff Westman wrote:

> It's called the ternary operator, and works like this:
> 
> $VAL ? $VAL = "$VAL:$expr" : $VAL = "$expr";
> 

couldn't this be written as 

$VAL = $VAL ? "$VAL:$expr" : $expr; 



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to