PHP

Topic: PHP Forms

What is $_REQUEST method for ?

$_REQUEST has combined value of $_GET and $_POST, hence can be used to access either of the values. But other than this it contains values of the cookie also. So $_REQUEST contains name-value pair of $_GET, $_POST, $_COOKIE arrays.

Browse random answers: