Skip to content

Instantly share code, notes, and snippets.

@gsmcwhirter
Created July 1, 2010 21:06
Show Gist options
  • Save gsmcwhirter/460565 to your computer and use it in GitHub Desktop.
Save gsmcwhirter/460565 to your computer and use it in GitHub Desktop.
function get_files($dir) {
$data = array();
if(is_dir($dir)) {
if($d = opendir($dir)) {
while(($f = readdir($d)) !== FALSE) {
if($f == ".." || $f == ".") { continue; }
else {
$data[] = sprintf("<a href='%s' rel='lightbox[%s]'><img src='http://www.charmcharter.se/imgsize.php?w=59&amp;h=34&amp;img=%s' width='%s' height='%s'></a>",$dir.$f,ALBUM,$dir.$f,WIDTH,HEIGHT);
}
}
closedir($d);
}
}
return $data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment