Courses Job Ready Program Fresher Trainings AI For Class 7 to 12 Corporate Training Placements Tutorials
Free Learning Resources

IT Tutorials & Interview Prep

Free guides, interview Q&As, and job responsibility breakdowns — curated by industry veterans to help you crack MNC interviews

166+
Tutorial Articles
8
Topic Categories
100%
Free to Read
← Back to PHP

$_GET

PHP Last Updated: Oct 17, 2025

$_GET

The PHP $_GET is a PHP superglobal which is used to collect form data after submitting an HTML form using method="get". Information sent from an HTML form with the GET method is displayed in the browser's address bar, making it less secure than POST.

Let's assume we have an HTML form that takes name and email as input and sends it to another file named name_get.php. We can access the values in name_get.php with the $_GET superglobal.

HTML FORM

<html>
<body>

<form action="name_get.php" method="get">
Name: <input type="text" name="name">
Email: <input type="text" name="email">
<input type="submit">
</form>

</body>
</html>

name_get.php

<html>
<body>

Welcome <?php echo $_GET["name"]; ?>!
Your email address is <?php echo $_GET["email"]; ?>

</body>
</html>

Output:

Welcome Harry!

Your email address is harry@example.com