I'm validating form variables and I have an IF statement that looks like this:
if($_REQUEST['var1'] && $_REQUEST['var2']......
There has to be a better way to do this. I could use empty() but it only take on argument. Isset() won't work either. Any ideas? As usual, I'm sure I'm overlooking something obvious.... :rolleyes: