I want to match on fieldA and everything in fieldB as long as it isn't 456:
if ($fieldA==123 && $fieldB!==456)
What is the syntax I should use for fieldB? Is it !== or !=? I've also seen something like !$fieldB==456
. It's really the syntax of fieldB that I'm having issues with.