On Fri, 29 Jun 2001 01:42, Thomas Deliduka wrote:
> You get paid more
> depending on your style:
>
> If ($foo == "bar") {
>     $dofoo = fobar($foo);
> } else {
>     $dofoo = foobar($bar);
> }
>
> Or
> If ($foo == "bar")
> {
>     $dofoo = fobar($foo);
> }
> else
> {
>     $dofoo = foobar($bar);
> }

if( $foo == "bar" ) $dofoo = fobar( $foo ) else $dofoo = foobar($bar);

I think I'm being exploited !   :-)

Cheers,
Brad

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to