> how would I write it if I wanted to say this:
> if $variable == 2 through 4 ???

if(( $variable >= 2 ) && ( $variable <= 4 )) {
    echo "Equals 2 through 4<br>\n";

}

Chris


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

Reply via email to