i cant seem to figure this out if anyone can help
basically i want to check $getme and if it is equal to minus,plus,home or empty then echo something
i know i can do a case statement but i was just wondering if there is a quicker way for when you only want a few things. the "or" only seems to work with 2 values.
like
<? if ($getme == "home" or "plus" or "minus" or "") { echo "Text"; }
any help appreciated.