Skip to content

Instantly share code, notes, and snippets.

@aurbano
Last active August 29, 2015 14:06
Show Gist options
  • Save aurbano/79df9df8d6c5e539f525 to your computer and use it in GitHub Desktop.
Save aurbano/79df9df8d6c5e539f525 to your computer and use it in GitHub Desktop.
Display all files in folder
<?php
include('displayFiles.php');
displayFiles('pictures');
<?php
function displayFiles($folder){
$handle = opendir(dirname(realpath(__FILE__)).$folder);
while($file = readdir($handle)){
if($file !== '.' && $file !== '..'){
echo 'pictures/'.$file;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment