DAY 7 PHP PROGRAMMING

http://php.flashwebhost.com/tom/day_7_ex_2.html

Code:
<html>
<body>


<h1>Welcome to Online Booking Center</h1>


<p>Please enter your email id below to book your show.</p>


<form method="GET" action="http://www.catchmyseat.com">
    Enter Your Email ID: <input name="email" type="text">
    <button type="submit">Book Now</button>
</form>


</body>
</html>
http://php.flashwebhost.com/tom/day_7_ex_2.php

Code:
<?php


echo '<h1>Hello, ' . $_GET['email'] . ' Wecome to Online Booking Center</h1>';