PHP $_GET and $_POST at php form
PHP $_GET
The $_GET variable is used to collect values from a form with method=”get”
Information sent from a form with the GET method is visible to everyone (it will be displayed in the browser’s address bar)
<html>
<body>
<form action=”welcome.php” method=”get“>
Name: <input type=”text” name=”name” />
Age: <input type=”text” name=”age” />
<input type=”submit” />
</form>
</body>
</html>
When we input Johnson at name and 30 […]