Advertisement
HristoGrigorov

Untitled

Jul 20th, 2017
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>First Steps Into PHP</title>
  6. <style>
  7. table * {
  8. border: 1px solid black;
  9. width: 50px;
  10. height: 50px;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <table>
  16. <tr>
  17. <td>
  18. Red
  19. </td>
  20. <td>
  21. Green
  22. </td>
  23. <td>
  24. Blue
  25. </td>
  26. </tr>
  27. <?php
  28. $color = 51;
  29. for ($i = 0; $i<5; $i++, $color+=51){ ?>
  30. <tr>
  31. <td style="background: rgb(<?= $color ?>, 0, 0);"></td>
  32. <td style="background: rgb(0, <?= $color ?>, 0);"></td>
  33. <td style="background: rgb(0, 0, <?= $color ?>);"></td>
  34. </tr>
  35. <?php } ?>
  36. </table>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement