Is there any security risk/problem with doing this?
// merge $_GET and $_POST into $submit.
$_ARGS = array();
foreach($_GET as $key => $value) {
$_ARGS[$key] = $value;
}
foreach($_POST as $key => $value) {
$_ARGS[$key] = $value;
}
$_ARGS = array_unique($_ARGS);
unset($_GET);
unset($_POST);
unset($HTTP_GET_VARS);
unset($HTTP_POST_VARS);