[PHP-WIN] RE: [PHP] Problem : track_vars stopped working.

2002-05-22 Thread Patrick Lynch
Hi Johan, The globals that PHP sets up have changed since since PHP 4.2.x See: http://www.php.net/release_4_2_0.php You can turn on register_globals in the php.ini file but it is recommended to use the more secure $_GET['test'] type variables. Best Regards, Patrick Lynch. Optip Ltd, Internet &

[PHP-WIN] Re: [PHP] Problem : track_vars stopped working.

2002-05-22 Thread Philip Olson
The php directive track_vars is deprecated and is always on. You appear to be referring to the register_globals directive though, which is a hot topic these days in the world of PHP. If register_globals = on, then $text will exist in your example (register_globals will create it). Otherwis