this could be a very simple answer, and I'm just being dumb / tired, but....
if ($key != "fax")
{
do_stuff();
} ...works fine.
BUT
if ($key != "fax" ¦¦ $key != "address2" ¦¦ $key != "address3")
{
do_stuff();
} ...doesn't work.
I'm getting a parse error on the if statement... does php let me do this kind of multiple check?
Can anyone think of an alternative - basically, I want to "do_stuff" if $key is not equal to one of the 3 above values.
Thanks!