Just curious, in other language I can easily write:
if $something IN ('AA','AB','CD') then ...
is there that easy "IN" operator in PHP? other than writing like this:
if ($something=='AA' || $something=='AB' || ...)
-OR-
strpos('AAABCD', $something)
Thanks a million for your help
-- This message may have been cut off and the rest will only be shown to members. To become a member, click here --