employer cover photo
employer logo
employer logo

Weavers Web Solutions

Is this your company?

Weavers Web Solutions interview question

Difference between $_GET and $_REQUEST

Interview Answer

Anonymous

4 Mar 2020

Difference is: $_GET retrieves variables from the querystring, or your URL.> $_POST retrieves variables from a POST method, such as (generally) forms. $_REQUEST is a merging of $_GET and $_POST where $_POST overrides $_GET

2