Advertisement
Guest User

321321

a guest
Oct 16th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4. </head>
  5.  
  6. <body>
  7.  
  8. <form method= "GET";>
  9. PODAJ 2 LICZBY <br>
  10. Pierwsza: <input type="text" name="aaa"> <br>
  11. Druga: <input type="text" name="aab"> <br>
  12. <input type="submit" value="SPRAWDZ" name="wyslij"> <br>
  13. </form>
  14.  
  15. <?php
  16.  
  17. $aaa = $_GET['aaa'];
  18. echo "$aaa <br>";
  19.  
  20. $aab = $_GET['aab'];
  21. echo $aab;
  22.  
  23. for($x=$aaa,$aaa>=$aab,$aaa++)
  24. echo $x;
  25.  
  26. ?>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement