<html>
<head>
<title>Process an HTML form</title>
</head>
<body bgcolor=lightyellow>
<h2>Process an HTML form thru PHP using GET method</h2>
<br><br>
<?php
error_reporting(0);
$name = $_GET['fullname'];
echo "You have entered <b> $name </b>";
?>
</form>
<?php include "../include.php"; ?> <!-- hyperlink to see the code -->
</body>
</html>