Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Szorzótábla</title>
  6. <style type="text/css">
  7. td { text-align: right; }
  8. td.negyzet { background-color: #eeeeee; font-weight: bold; }
  9. </style>
  10. </head>
  11. <body>
  12. <h2>Szorzótábla</h2>
  13. <table border="1">
  14. <?php
  15. for ($i = 1; $i <= 10; $i++) {
  16. echo "<tr>";
  17. for ($j = 1; $j <= 10; $j++) {
  18. $ki = ($i == $j) ? '<td class="negyzet">' : '<td>';
  19. echo $ki;
  20. echo $i.' * '.$j.' = ',$i*$j;
  21. echo '</td>';
  22. }
  23. echo "</tr>";
  24. }
  25. ?>
  26. </table>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement