On 26 Jan 2004 at 18:21, Jake McHenry wrote: > yes, but they're not converted into those yet. all of the variables > are with register_globals = on and they're all global vars. I'm > converting them all over to session vars, this is why I need to know > the list.
Just an additional note to my previous post: my suggestion (print_r($GLOBALS)) will work irrespective of whether register_globals is on or off. The variables you create in the global scope (not the ones created from form fields or GET strings) are always global, even if register_globals is off. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php