Advertisement
Guest User

Untitled

a guest
May 29th, 2013
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.53 KB | None | 0 0
  1. <?php
  2. $dir = 'resources/';
  3.  
  4. foreach(glob($dir.'*', GLOB_ONLYDIR) as $resdir) {
  5.     $resdir = str_replace($dir, '', $resdir);
  6.     echo "
  7. <div class=\"span3\">
  8. <div class=\"tile\">
  9. <img src=\"resources/" . $resdir . "/thumbnail.png\" class=\"img-rounded\">
  10. <h3 class=\"tile-title\">" . $resdir . "</h3>
  11. <p>" include('resources/'.$_GET['Mydir'].'description.txt'); "</p>
  12. <a class=\"btn btn-primary btn-large btn-block\" href=\"http://www.baboonhut.com/resources/"  . $resdir . "/\">More Information</a>
  13. </div>
  14. </div>
  15. "
  16. ;
  17. }
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement