$value) { if (is_array($value)) { // there could be a variable coming from a cookie of // another application, with the same name as this array unset($target[$key]); PMA_gpc_extract($value, $target[$key]); } else if ($is_magic_quotes) { $target[$key] = stripslashes($value); } else { $target[$key] = $value; } } return TRUE; } if (!empty($_GET)) { PMA_gpc_extract($_GET, $GLOBALS); } // end if if (!empty($_POST)) { PMA_gpc_extract($_POST, $GLOBALS); } // end if if (!empty($_FILES)) { foreach($_FILES AS $name => $value) { $$name = $value['tmp_name']; ${$name . '_name'} = $value['name']; } } // end if if (!empty($_SERVER)) { $server_vars = array('PHP_SELF', 'HTTP_ACCEPT_LANGUAGE', 'HTTP_AUTHORIZATION'); foreach ($server_vars as $current) { if (isset($_SERVER[$current])) { $$current = $_SERVER[$current]; } elseif (!isset($$current)) { $$current = ''; } } unset($server_vars, $current); } // end if // Security fix: disallow accessing serious server files via "?goto=" if (isset($goto) && strpos(' ' . $goto, '/') > 0 && substr($goto, 0, 2) != './') { unset($goto); } // end if ?>