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 1021B

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