Identify the choice that best completes the statement or answers the question. T
ID: 3814625 • Letter: I
Question
Identify the choice that best completes the statement or answers the question. The $_ENV autoglobal contains ____ variables that programs use to interact with the system. system environmental program script You can use___ autoglobal array to refer to the global version of a variable from inside a function. $GLOBALS $_GLOBAL $_GLOBALS $GLOBAL The value of the_____ attribute identifies the program on the Web server that will process the form data when the form is submitted. action method name id When you click a form's submit button, each field on the form is sent to the Web server as a_____ pair. true/false name/value variable/value yes/no When you use the____ method to submit form data to the processing script, the form data is appended to the URL specified by the action attribute. get post request submit The PHP feature that automatically adds a backslash to any single quote, double quote, or NULL character contained in form data that a user submits to a PHP script is_____.Explanation / Answer
21. Environmental variables
S_ENV contains the environmental variables for the operating system which is used to setup the webserver. And the environmental variables are used by the program to interact with the system.
22. option a. $GLOBALS
This is the autoglobal which refers to the global version of variable from inside function.
23.c. method
When form is submitted each the method defines how form data is to be submitted to the webserver.
24. b. name/value
When form is submitted each field value is submitted as name/value pair.
25. a. get
When get method is used only the form data is appended to the url specified by action attribute.
26. Magic quotes
It is the feature in PHP which automatically add's the blackslash .