Is this correct for php:
if ($var1 && !$var2) { do this }
The part I'm asking about is the exclamation point in front of $var2 -- the if clause is doing this:
if (variable one exists and variable 2 doesn't exist) { do this }
The actual code, if it shows up correctly, is this:
<? if...