Advertisement
yani-valeva

Fifty Shades of Gray

Mar 9th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2. $currentColor = 0;
  3. for ($rows = 0; $rows < 5; $rows++) {
  4. for ($cols = 0; $cols < 10; $cols++) {
  5. echo "<div style=\"background-color: rgb($currentColor, $currentColor, $currentColor);\"></div>";
  6. $currentColor += 5;
  7. }
  8. echo "<br>";
  9. $currentColor++;
  10. }
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement