Back again!
I now need to check if a variable holds one of multiple values...I.E:
if ($cvalue == "Germany" OR "England" OR "latvia" OR "Africa") { echo "Do something" ; }
In VB I'd just have used something like:
in("Germany" OR "England" OR "latvia" OR "Africa")
Any help appreciated...digging through my PHP docs as we speak, but cannot see the way!!!