Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3. <head>
  4. <title>OCENA SŁOWNIE</title>
  5. <meta charset="utf-8">
  6. </head>
  7. <body>
  8. <h1>OCENA SŁOWNIE</h1>
  9. <hr>
  10. <p>Wpisz ocenę cyfrą i kliknij przycisk <b>Rozwiąż</b>, aby wyświetlić ocenę słownie.</p>
  11. <hr>
  12. <form>
  13. <label>
  14. Ocena słownie:
  15. <input type="number" name="ocena" min="1" max="6" required>
  16. </label><br><br>
  17. <input type="submit" value="Rozwiąż"><br>
  18. </form>
  19. <hr>
  20. <?php
  21.  
  22. if(isset($_GET['ocena']))
  23. {
  24.  
  25. $ocena=$_GET['ocena'];
  26. switch($ocena)
  27. {
  28. case 1 : echo 'Niedostateczny'; break;
  29. case 2 : echo 'Dopuszczający'; break;
  30. case 3 : echo 'Dosteteczny'; break;
  31. case 4 : echo 'Dobry'; break;
  32. case 5 : echo 'Bardzo dobry'; break;
  33. case 6 : echo 'Celujący';
  34.  
  35. }
  36. }
  37.  
  38. ?>
  39. </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement