just add
extract($_SERVER);
to the to of auth.. - covers most of the issues.
Regards
Alan



<?php
//Register $_GET variables
while (list ($k, $v) = each ($_GET)) {
      $$k=$v;
}

//Register $_POST variables
while (list ($k, $v) = each ($_POST)) {
      $$k=$v;
}

?>

Just don't tell the root ;) since this is for all practical purposes equivalent of having register_globals on (you might want to add one more loop for registering cookie values as well, but I don't remember the new name for the array right now).

/Rambo


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



--
Can you help out? Need Consulting Services or Know of a Job?
http://www.akbkhome.com




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to