Guest User

Untitled

a guest
Apr 19th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link rel="stylesheet" type="text/css" href="/navstyle.css">
  5. </head>
  6. <body>
  7. <div class="topnav">
  8. <a href="home.php">Home</a>
  9. <a href="a_login.php">News</a>
  10. <a href="a_contact.php">Contact</a>
  11. <a href="a_about.php">About</a>
  12. </div>
  13. <h1>
  14. A form that sends data to itself
  15. </h1>
  16. <form action="" method="get">
  17. <label>Your choice is </label><input type = 'text' name='choice'><br>
  18. <input type = "submit" name="submit">
  19. </form>
  20. <p>
  21. <?php
  22. $basu = $_GET['choice'];
  23. echo $basu;
  24. if ($basu == "jaws") {
  25. echo " really scary film";
  26. }
  27. ?>
  28. </p>
  29. </body>
  30. </html>
Add Comment
Please, Sign In to add comment