I have an if statement that is looking at HTTP_GET_VARS and I need to allow partial results to pass. That is...
if ($home=="index.php?newlang=$var")
I need it too look at the $var as a wildcard element. In actuality the URL's will be:
index.php?newlang=eng
index.php?newlang=fra
index.php?newlang=swe
Anything simple for this??
Thanks for the help.
Jim