Is there a means in PHP to check for any post at all? I'm not looking for a specific posted variable, just any variable.
Example:
$vara = $HTTP_POST_VARS['vara'];
$varb = $HTTP_POST_VARS['varb'];
$varc = $HTTP_POST_VARS['varc'];
If len($vara) >0 or len($varb)>0 or len($varc)>0 then
I would like to replace the If statement with something that says if any variable has been posted then...
Thanks,
Doug