RE: [PHP] Register Globals

2003-07-21 Thread stfmoreau
OK, sorry, I tried to help... and finaly I learn (I didn't know extract...) -Message d'origine- De : Ford, Mike [LSS] [mailto:[EMAIL PROTECTED] Envoyé : lundi 21 juillet 2003 14:35 À : 'stfmoreau'; Daryl Meese; [EMAIL PROTECTED] Objet : RE: [PHP] Register Globals >

RE: [PHP] Register Globals

2003-07-21 Thread stfmoreau
Hi, include this code in your header file : // _GET if (isset($_GET)) while (list($key, $val) = each($_GET)) { eval ("$".$key." = '".$val."';"); } // _POST if (isset($_POST)) whi