Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2. $mordy = [
  3. [
  4. 'zdjecie' => 'rusek.jpg',
  5. 'opis' => 'asdasdas';
  6. ],
  7. [
  8. 'zdjecie' => 'borz.jpg',
  9. 'opis' => 'ale gruby';
  10. ],
  11. ];
  12.  
  13. $wybranaMorda = array_rand($mordy);
  14.  
  15. echo $wybranaMorda['zdjecie'].$wybranaMorda['opis'];
  16.  
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement