phrozenflame Posted December 29, 2006 Share Posted December 29, 2006 this firstName Functionality $GLOBALS Contains all global variables in your script, including other superglobals. This is not generally recommended for use, unless you are, for some reason, not sure where a variable will be stored. $GLOBALS has been available since PHP 3, and its operation has not changed. $_GET Contains all variables sent via a HTTP GET request. That is, sent by way of the URL. Users of older PHP versions will recognise this as being the same as $HTTP_GET_VARS array, which, although deprecated, is still available for use. $_POST Contains all variables sent via a HTTP POST request. This is similar to the old $HTTP_POST_VARS array, which, although deprecated, is still available for use. $_FILES Contains all variables sent via a HTTP POST file upload. This is similar to the old $HTTP_POST_FILES array, which, although deprecated, is still available for use. $_COOKIE Contains all variables sent via HTTP cookies. This is similar to the old $HTTP_COOKIE_VARS array, which, although deprecated, is still available for use. $_REQUEST Contains all variables sent via HTTP GET, HTTP POST, and HTTP cookies. This is basically the equivalent of combining $_GET, $_POST, and $_COOKIE, and is less dangerous than using $GLOBALS. However, as it does contain all variables from untrusted sources (that is, your visitors), you should still try to steer clear unless you have very good reason to use it. There's no equivalent to $_REQUEST in versions of PHP before v4.1. $_SESSION Contains all variables stored in a user's session. This is similar to the old $HTTP_SESSION_VARS array, which, although deprecated, is still available for use. $_SERVER Contains all variables set by the web server you are using, or other sources that directly relate to the execution of your script. This is similar to the old $HTTP_SERVER_VARS array, which, although deprecated, is still available for use. $_ENV Contains all environment variables set by your system or shell for the script. This is similar to the old $HTTP_ENV_VARS array, which, although deprecated, is still available for use. BACK TO ME-Some of these are deprecated so I don't care about those, but with these specifically, does this mean that every variable under those sections are all stored in that information Quote Link to comment https://forums.phpfreaks.com/topic/32219-solved-question-on-this/ Share on other sites More sharing options...
mattd8752 Posted December 29, 2006 Share Posted December 29, 2006 Those are arrays with info below for ones which keep the data in [brackets]. Other than that I'm not quite sure what your asking. Quote Link to comment https://forums.phpfreaks.com/topic/32219-solved-question-on-this/#findComment-149542 Share on other sites More sharing options...
phrozenflame Posted December 29, 2006 Author Share Posted December 29, 2006 Oh so then shall I just replace the old deprecated tags for the newer versions Quote Link to comment https://forums.phpfreaks.com/topic/32219-solved-question-on-this/#findComment-149544 Share on other sites More sharing options...
wildteen88 Posted December 29, 2006 Share Posted December 29, 2006 Those are the newer superglobal arrays. They replace the older (now depreciated) superglobals which are the $HTTP_*_VARS arrays$HTTP_GET_VARS is now $_GET$HTTP_POST_VARS is now $_POSTetc. Quote Link to comment https://forums.phpfreaks.com/topic/32219-solved-question-on-this/#findComment-149551 Share on other sites More sharing options...
phrozenflame Posted December 29, 2006 Author Share Posted December 29, 2006 Thanks for all your help Quote Link to comment https://forums.phpfreaks.com/topic/32219-solved-question-on-this/#findComment-149552 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.