mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2026-09-21 12:44:00 +08:00
* refactor: clean to roadmap content * refactor: move shared helpers into scripts/lib
747 B
747 B
$_GET
$_GET is a pre-defined array in PHP, that's used to collect form-data sent through HTTP GET method. It's useful whenever you need to process or interact with data that has been passed in via a URL's query string. For an example if you have a form with a GET method, you can get the values of the form elements through this global $_GET array. Here’s an example:
<form method="get" action="test.php">
Name: <input type="text" name="fname">
<input type="submit">
</form>
Using $_GET in test.php, you can fetch the 'fname' value from the URL:
echo "Name is: " . $_GET['fname'];
Visit the following resources to learn more: