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.

shot.php 278B

1234567891011121314151617181920
  1. <html>
  2. <body>
  3. <h2>POST</h2>
  4. Uw schot was:
  5. <?php
  6. $canal = 5;
  7. $sub = rand(0, $canal - 1);
  8. $ammo = $canal / 5;
  9. $shot = $_POST['shot'];
  10. if ($shot == $sub) {
  11. echo 'Gewonnen';
  12. } else {
  13. echo "Gemist";
  14. }
  15. ?>
  16. </body>
  17. </html>