Tutorial for $_REQUEST in Super Global Variables
What is $_REQUEST? $_REQUEST is a super global variable that’s used to collect data when an HTML form is submitted. Because $_POST and $_GET accomplish the same purpose and are extensively used, $_REQUEST is rarely used. Example:- A form with an input field and a submit button is shown in the example below. The form … Read more