Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <style>
  2. div{border:1px solid black;
  3. height:3px;
  4. }
  5. </style>
  6.  
  7.  
  8.  
  9. <?php
  10. echo 'Liczby:<br>';
  11. for($i=0;$i<20;$i++){
  12. $r=rand(0,30);
  13. $t[$i]=$r;
  14. echo $r.' ';
  15. }
  16.  
  17. for($i=0;$i<20;$i++)
  18. echo "<div style='width:".$t[$i]."px'></div>";
  19.  
  20. ?>
  21.  
  22. <div></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement