Handles now the $HTTP_POST_FILES array

This commit is contained in:
Loïc Chapeaux
2001-05-05 20:38:13 +00:00
parent 254c2b9c66
commit d91a01be7d

View File

@@ -15,4 +15,9 @@ if (!empty($HTTP_POST_VARS)) {
while(list($name, $value) = each($HTTP_POST_VARS)) while(list($name, $value) = each($HTTP_POST_VARS))
$$name = $value; $$name = $value;
} }
if (!empty($HTTP_POST_FILES)) {
while(list($name, $value) = each($HTTP_POST_FILES))
$$name = $value['tmp_name'];
}
?> ?>