Thread: if, or
View Single Post
# 2 26-08-2004 , 12:05 PM
kbrown's Avatar
Moderator
Join Date: Sep 2002
Location: London, UK
Posts: 3,198
It's the same..

== equal to
&& and
|| or
! not
> greater than
>= greater than or equal to
< less than
<= less than or equal to

for example: if( $a < 5 || $a > 10)

the if statement is true if the value of $a is less than 5 OR greater than 10...


Kari
- My Website
- My IMDB

Do a lot, Fail a lot and Learn a lot!