In using an older version of PHP (4.0.6 for instance), one usually has to create short POST variable names like:
$blah = $HTTP_POST_VARS['blah'];
but couldn't you do that with all your variables by simply passing the following?
extract($HTTP_POST_VARS);
if so, anybody have any headaches caused by this code in their web apps?
Ras.