What's the difference between $_POST, $_GET, and $_REQUEST?

前端 未结 4 1697
后悔当初
后悔当初 2020-12-03 22:59

I am bit confused about these super global variable ($_POST, $_GET, and $_REQUEST) in PHP. In which scenario do I need to use these va

4条回答
  •  执笔经年
    2020-12-03 23:46

    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.
    

提交回复
热议问题