What are autoglobals?
For instance if you send data through a form using the POST method, you will automatically have $_POST made available which is an autoglobal array containing all the keys and values passed through that form through the POST method.
There are several other global variables set this way.
Comment on this Question and Answer >>>
ASK A QUESTION
More other PHP Questions
What is the difference between sessions and cookies?What does the @ character do in PHP?
Can I spellcheck my text using PHP?
What is the differece between $message and $$message?
What is the difference between the while and do while loops?
