gmrobert wrote:just used: import_request_variables ( string $types [, string $prefix] )
to bring them into the global variable space.
But why would you do that? Assuming you don't add a prefix, that's simply re-introducing the security hazards that prompted register_globals to be defaulted to Off (and even removed entirely from PHP6). Not to mention the fact that you still can't be sure the data is coming from where you think it is.
The solution would actually be to use $POST, $GET, etc. instead. More information on these superglobal arrays can be found here: [man]variables.predefined[/man].