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
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"