Stevie D Peele wrote:

What do we call things like this -- $_POST['name'], $_SERVER['remote
add']

Are they superglobals and where can I find a list of these?

Thanks

________________________________________________________________
The best thing to hit the internet in years - Juno SpeedBand!
Surf the web up to FIVE TIMES FASTER!
Only $14.95/ month - visit www.juno.com to sign up today!

Hi,


Superglobals are those variables defined by PHP, like
$_SERVER, $_REQUEST, etc. (http://de3.php.net/manual/en/language.variables.predefined.php)
User defined superglobals do not exist (yet at least)
In the exmple above the variables are $_SERVER and $_POST
the others are just members of the respective arrays.


Cheers,
Catalin

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



Reply via email to