Home
Submit
Free Hosting
Link To Us
Contacts
PHP Unset global variables
PHP
Download
(.zip)
<?php
if (@ini_get('register_globals'))
foreach ($_REQUEST as $key => $value)
unset($GLOBALS[$key]);
?>
PHP
Unset global variables