Guest User

Untitled

a guest
Feb 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <?php
  2. srand((float) microtime() * 10000000);
  3.  
  4. <MTBlogRollEntries category="Connections">
  5. $explore[<$MTBlogRollEntryID$>]['title']='<$MTBlogrollEntryName encode_php="1"$>';
  6. $explore[<$MTBlogRollEntryID$>]['desc']='<$MTBlogrollEntryDesc encode_php="1"$>';
  7. $explore[<$MTBlogRollEntryID$>]['link']='<$MTBlogrollEntryURI encode_php="1"$>';
  8. </MTBlogRollEntries>
  9.  
  10. for($i = 0; $i <= 5; $i++) {
  11. $rn = array_rand($explore);
  12.  
  13. echo '<dt><a href="' . $explore[$rn]['link'] . '" title="' . $explore[$rn]['title'] . '">' . $explore[$rn]['title'] . '</dt>';
  14. echo '<dd>' . $explore[$rn]['desc'] . '</dd>';
  15. }
  16.  
  17. ?>
Add Comment
Please, Sign In to add comment