is there a way to do an or in an if statement
if (($a == $b) or ($a == $c)) { do stuff }
if ($a == $b || $a == $c) { do stuff }
Thanks