Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <meta charset="utf-8">
  4.     </head>
  5.     <body>
  6.         <h2>Geben Sie eine zufällige Jahreszahl an:</h2>
  7.         <form action="" method="post">
  8.             <p><input type="text" name="jahr"/>
  9.                 <input type="submit" name="submit"/></p>
  10.         </form>
  11.  
  12.             </body>
  13. </html>
  14.  
  15. <?php
  16. if(isset($_POST['submit'])){
  17.     if($_POST["jahr"] %4 == 0) {
  18.         echo "<p> Zahl ist teilbar </p>";
  19.     } else {
  20.         echo "<p> Zahl nicht teilbar </p>";
  21.     }
  22.     }
  23.  
  24.  
  25. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement