frank wrote:
> better make a switch statement: with case such as
> switch($x):

that should be :

switch (true) {
        // bla
}

otherwise you would be testing the boolean cast of the
value of $x against the result of the expression given in
the case statement ... in practice it would probably
do what you want but not for the reason you think.

> case ($x >= 16 && $x <= 30):
> 
>     break;
> case ....
> 
> set*
> 
> 
> ""Chilling Lounge Admin"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag
> news:[EMAIL PROTECTED]
>> Hi.
>>
>> I need help with matching a variable. The variable would be e.g. 0-15
>> , 16-30 etc. and when the variable is equal to a certain range, it
>> would echo an image.
>>
>> Does anyone know what function I should use? preg_match?
>>
>> The code would be something like
>>
>> if(preg_match("[16-30]",$variable))
>> {
>> echo "image";
>> }
>>
>> but the above code doesn't work. How do I fix it?
>>
>> Thanx
> 

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

Reply via email to