You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.php 990B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php session_start(); ?>
  2. <html>
  3. <head>
  4. </head>
  5. <body>
  6. <h1 id="shot">Zeeslag</h1>
  7. <?php
  8. if ($_SESSION['sub']) {
  9. $sub = $_SESSION['sub'];
  10. } else {
  11. $canal = 5;
  12. $sub = rand(0, $canal - 1);
  13. $_SESSION['sub'] = $sub;
  14. $ammo = $canal / 5;
  15. }
  16. echo "Sub position: " . $sub;
  17. ?>
  18. <h2 id="shot">Invoer</h2>
  19. <form action="index.php" method="POST">
  20. <label for="name">Wat is uw schot?</label>
  21. <input type="text" name="shot" width="10" />
  22. <input type="submit" />
  23. </form>
  24. <?php
  25. if ($_POST) {
  26. $shot = $_POST['shot'];
  27. if ($shot == $sub) {
  28. echo 'Gewonnen';
  29. session_destroy();
  30. ?> <br /><a href="/">Reset Game</a><?php
  31. } else {
  32. echo "Gemist";
  33. }
  34. }
  35. ?>
  36. </body>
  37. </html>