[snip]
 How would I write this statement:

if $thisvar is not equal to this value or that value. { do stuff }
[/snip]

You already wrote it. Now if you want the PHP way RTFM about conditional
statements.

if($thisvar != thisval || $thisvar != thatval){
        there be dragons here, because what happens if the first
evaluates true? false?
}

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to