Want to use both GET and POST methods

后端 未结 6 1381
情话喂你
情话喂你 2020-12-11 16:21

I know result page that uses GET method can be bookmarked while the one using POST cannot be. I also know about the restrictions of the GET methods.

Now suppose I w

6条回答
  •  伪装坚强ぢ
    2020-12-11 16:44

    Here's how you could use GET and POST in one:

    The PHP:

    print_r($_REQUEST);
    // var1 = "post1"
    // var2 = "post2"
    // var3 = "get3"
    
    print_r($_GET)
    // var1 = "get1"
    // var2 = "get2"
    // var3 = "get3"
    
    print_r($_POST);
    // var1 = "post1"
    // var2 = "post2"
    

提交回复
热议问题