Advertisement
Guest User

gówno

a guest
May 24th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3. <head>
  4. <title> przypomnienie </title>
  5. <meta charset="utf-8">
  6. </head>
  7. <body>
  8. <form action="przypomnienie.php" method="GET">
  9. a:<input type="number" name="a"><br>
  10. b:<input type="number" name="b"><br>
  11. <input type="submit" value="oblicz">
  12. </form>
  13. <?php
  14. function iloczyn($x, $y){
  15. $w=$x*$y;
  16. return $w;
  17.  
  18.  
  19. }
  20.  
  21. ?>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement