Forum Moderators: coopster
All the variables I want to process in the same manner contain the same string:
submit_#*$!
submit_yyy
submit_zzz etc..
So I would like to do something like this:
if ($_GET['var'] OPERATOR "submit_") {....
Does such an operator exists? Or do I have to do use a "==" for each variable I want to process? I guess what I am looking for is an operator that means "contain".
Thanks for any help.