If I have a conditional statement, can I use or in the "if"
ie.
if($a or $b or $c){
do this.........
}
else{
if so, what is the syntax
Yes you can.
Have you tried:
if((condition a) or (conditionb) or (conditionc)){ do this......... } else{ do this......... }
:p
that worked great, thanks alot