Advertisement
UniQuet0p1

Untitled

Oct 13th, 2021
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2.  
  3. $actualGrade = intval($_GET['grade']) ?? 3;
  4.  
  5. ?>
  6.  
  7. <!doctype html>
  8. <html lang="en">
  9. <head>
  10. <meta charset="utf-8">
  11. <title></title>
  12. </head>
  13. <body>
  14. <form>
  15.  
  16. <?php foreach (range(1, 5) as $grade): ?>
  17.  
  18. <input type="radio"
  19. name="grade"
  20. <?= $grade === $actualGrade ? 'checked' : ''; ?>
  21. value="<?= $grade ?>" />
  22. <?= $grade ?>
  23.  
  24. <?php endforeach; ?>
  25.  
  26. </form>
  27. </body>
  28. </html>
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement