On Wednesday, May 15, 2002, at 02:46 , Felix Geerinckx wrote:

> on Wed, 15 May 2002 09:30:04 GMT, [EMAIL PROTECTED]
> (Stefan Haberer) wrote:
>
>>           if    (   0 <= $avg_speed <=   5 )   { $speed_cost_code
>
> You need
>
>     if ( 0 <= $avg_speed && $avg_speed <= 5 ) { ... }

is there any issue with using 'and' one way or
the other....


ciao
drieux

---


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

Reply via email to