cochambre on 06/30/06
Last Edited at 06/30/06 01:39pm
# TURN OFF "REGISTER GLOBALS" WITHOUT EDITION OF PHP.INIif (ini_get("register_globals")){ foreach ($_REQUEST as $k => $v){ unset($GLOBALS[$k]); unset($$k); }}
Report this snippet Tweet
Comment:
You need to login to post a comment.