Summary of several methods for php to obtain parameters

  • 2021-01-02 21:46:46
  • OfStack

A summary of several methods for php to obtain parameters

$value = $_POST["value"]; // Get in post

$value=$_REQUEST["value"]; // Get the parameters in get or post (whichever has them)

$value=$_GET["value"]; // Get the parameters in get


Related articles: