advanced code snippet search
cochambre on 06/30/06
ini php register globals configuration
06/30/06 01:39pm
3 people have marked this snippet as a favorite
postNuKenicolasparmillisami
# 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.