Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
130
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. <body>
  3.  
  4. <form action="strona2.php" method="POST">
  5. Podstawa<input type="number" min="0" name="p"><br>
  6. Wykładnik<input type="number" name="w"><br>
  7. <input type="submit">
  8. </form>
  9. </body>
  10. </html>
  11.  
  12.  
  13. <?php
  14. $p = $_POST["p"];
  15. $w = $_POST["w"];
  16.  
  17. if($p=="" || $w=="" || $w<0) echo "zjebane";
  18. else{
  19.  
  20. $wynik = pow($p,$w);
  21.  
  22. echo $wynik;
  23. }
  24. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement