Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html lang="pl">
  3.  
  4. <head>
  5. <meta charset=utf-8">
  6. <title>Formularz</title>
  7. </head>
  8.  
  9. <body>
  10.  
  11. <form action="funkcje.php" method="get">
  12.  
  13. <div>
  14. 1 liczba:<br/>
  15. <input type= "text" name="a" value="" /><br/>
  16. <br/>
  17. <select>
  18. <option name="s1" >dodawanie</option>
  19. <option name="s2" >odejmowanie</option>
  20. <option name="s3" >mnozenie</option>
  21. <option name="s4" >dzielenie</option>
  22. </select>
  23. <input type="submit" value="Oblicz" name="submit" />
  24. <br/>
  25. <br/>
  26. 2 liczba:<br/>
  27.  
  28. <input type= "text" name="b" value="" /><br/>
  29.  
  30. </div>
  31.  
  32. </form>
  33.  
  34. </body>
  35.  
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement