When processing the form, what is the difference between a hidden form element and a non-hidden one, such as a text box?
There is no difference
Correct:
There is no difference
Answer B is correct.When processing a form, each form element is simply a name/value pair within one of the superglobal arrays.Answers A and C are incorrect because hidden form elements can (and should) have both a name and a value.Answer D is incorrect because hidden form elements are only excluded from the user's view, not from the HTTP request.