Advertisement
Guest User

Untitled

a guest
Jan 26th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <html><body>
  2. <table border="1" rules="none"> <!-- "groups","all","none", ect. -->
  3.  
  4. <?php
  5.  
  6.  
  7. echo'<tr>';
  8.  
  9. for($i=(-51);$i<255;$i+1)
  10. {
  11. $i=$i+(51);
  12.  
  13. for($j=(-51);$j<255;$j+1)
  14. {
  15.  
  16. $j=$j+51;
  17.  
  18. for($k=(-51);$k<255;$k+1)
  19. {
  20. $k=$k+51;
  21.  
  22. /*$a=dechex ($i).dechex($j).dechex($k);*/
  23.  
  24. echo '<td width="20" bgcolor='.dechex ($i).dechex($j).dechex($k).
  25. '><td width="50">'.dechex ($i).dechex($j).dechex($k).'</td></td>';
  26.  
  27. }
  28. echo'</tr>';
  29. }
  30. }
  31. ?>
  32. </table>
  33. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement