Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2. echo "<form>
  3. podaj liczbe <input type='int' name='liczba'>
  4. <input type='submit' value='klik'>
  5. </form>
  6. <br>";
  7.  
  8.  
  9. @$liczba = $_GET ['liczba'];
  10.  
  11. if ($liczba ==0)
  12. echo "Liczba jest rowna zero";
  13. elseif ($liczba <0)
  14. echo "liczba jest ujemna";
  15. elseif ($liczba > 0)
  16. echo "Liczba jest dodatnia";
  17.  
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement