Removed the '^M' at the end of some lines
This commit is contained in:
@@ -7,17 +7,20 @@
|
|||||||
* them
|
* them
|
||||||
*/
|
*/
|
||||||
if (!empty($HTTP_GET_VARS)) {
|
if (!empty($HTTP_GET_VARS)) {
|
||||||
while(list($name, $value) = each($HTTP_GET_VARS))
|
while(list($name, $value) = each($HTTP_GET_VARS)) {
|
||||||
$$name = $value;
|
$$name = $value;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($HTTP_POST_VARS)) {
|
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)) {
|
if (!empty($HTTP_POST_FILES)) {
|
||||||
while(list($name, $value) = each($HTTP_POST_FILES))
|
while(list($name, $value) = each($HTTP_POST_FILES)) {
|
||||||
$$name = $value['tmp_name'];
|
$$name = $value['tmp_name'];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
Reference in New Issue
Block a user