Jake McHenry wrote:
<snip>
There are your 'super-globals', like $_POST, $_GET, $_REQUEST,
$_SESSION, etc.  If I'm not mistaken, phpinfo() will show you all of
those, as well as php/web server configuration.


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.

What is not converted into what? If you post info to a page, and running a version of php which supports it (4.02+ ?), the $_POST super-global will be there...even with register_globals off. Do you get any output with....


<pre>
<?php print_r ( $GLOBALS ); ?>
</pre>

--
By-Tor.com
It's all about the Rush
http://www.by-tor.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to