DAY 7 PHP PROGRAMMING
http://php.flashwebhost.com/tom/day_7_ex_3.php
Code:<?php if (isset($GET['email'])) { echo 'Hello, ' . $_GET['email'] . ' Welcome to Online Booking Center'; } else { echo' <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="day_7_ex_2.php"> Enter Your Email ID: <input name="email" type="text"> <button type="submit">Book Now</button> </form> </body> </html>'; }




Reply With Quote

Bookmarks