Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1.  
  2. <?php
  3. $images = array
  4. (
  5. 'img/icon0.png',
  6. 'img/icon1.png',
  7. 'img/icon2.png',
  8. 'img/icon3.png',
  9. 'img/icon4.png',
  10. 'img/icon5.png',
  11. 'img/icon6.png',
  12. 'img/icon7.png',
  13. 'img/icon8.png',
  14. 'img/icon9.png',
  15. );
  16.  
  17. // shuffle($images);
  18.  
  19. foreach ($images as $image)
  20. {
  21. echo '<img src="' . $image . '" />';
  22. }
  23. echo '<br>';
  24.  
  25. for ($x = 0; $x < 10; $x++) {
  26. echo '<img src="' . $images[rand(0,9)] . '" />';
  27. }
  28. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement