"Curt Zirzow" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > * Thus wrote Ivo Fokkema ([EMAIL PROTECTED]): > > I want to warn you though, PHP depricates the use of register_globals = On, > > so it would be recommendable to use your modified script and keep coding > > using $_POST, $_GET and these kind of global variables. > So php is removing that feature?
Don't know about the future, but its default is off since 4.2.0 because of security issues that might arise from bad coding. An example on this is on http://www.php.net/manual/en/security.registerglobals.php. If it wasn't such a drag for many people to change all of their coding, I'd say it would be a good idea to just disable it for security issues. When I realised I really needed to use the $_POST, $_GET and $_SESSION arrays, I became more aware of the possible security holes of my scripts. It helped me a lot, I'd say. Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php