When a form is submitted, the actual method used for sending data can be found in the PHP superglobal called ________.
- $_SERVER
- $_REQUEST
- $_POST
- $_METHOD
The method used for sending data when a form is submitted can be found in the PHP superglobal $_POST.
Loading...
Related Quiz
- What are some common uses of the function_exists() function in PHP?
- In PHP, an associative array is an array with ______ keys.
- The do...while loop in PHP will always execute the block of code at least ______, then it will repeat the loop as long as the condition is true.
- Which of the following data types in PHP is not scalar?
- What can be the potential issues with a while loop in PHP?