>If ($a=b) || ($a=c) || ($a=d)

That almost looks right.  I believe this will do it:

if ( $a == $b || $a == $c || $a == $c ) { ... }

or, for non-numerics:

if ( $a eq $b || ... ) { ... }

Cheers,

Nathanael


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

Reply via email to