Suppersine

[PHP] mainmenu 109.4.18

Apr 18th, 2020
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <html>
  2. <body>
  3.  
  4.  
  5. <form method="post">
  6. <p>Step1: Choose a position</p>
  7. <select name="menu">
  8. <option value="1">Add a new employee</option>
  9. <option value="2">Show the employee list</option>
  10. <option value="3">Delete an employee</option>
  11. </select>
  12. <input type="submit" name="proc0" value="next"/>
  13. </form>
  14.  
  15. <?php
  16.  
  17. if (isset($_POST['proc0'])) {
  18.  
  19. if ($_POST['menu'] == "1") {
  20. header("Location: http://127.0.0.1/course/hw2/selection");
  21. exit;
  22. }
  23. else if ($_POST['menu'] == "2") {
  24. header("Location: http://127.0.0.1/course/hw2/list");
  25. exit;
  26. }
  27. else {
  28. header("Location: http://127.0.0.1/course/hw2/delete");
  29. exit;
  30. }
  31.  
  32. }
  33.  
  34. ?>
  35.  
  36. </body>
  37. </html>
Add Comment
Please, Sign In to add comment