Handles now the $HTTP_POST_FILES array
This commit is contained in:
@@ -15,4 +15,9 @@ if (!empty($HTTP_POST_VARS)) {
|
||||
while(list($name, $value) = each($HTTP_POST_VARS))
|
||||
$$name = $value;
|
||||
}
|
||||
|
||||
if (!empty($HTTP_POST_FILES)) {
|
||||
while(list($name, $value) = each($HTTP_POST_FILES))
|
||||
$$name = $value['tmp_name'];
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user