"; print_r( $files_arr ); echo "";
// Get each files of our directory with line break
foreach ($files_arr as $file) {
//Get the file path
$file_path = $dir.$file;
// Get the file extension
$file_ext = pathinfo($file_path, PATHINFO_EXTENSION);
if ($file_ext == "jpg" || $file_ext == "png" || $file_ext == "JPG" || $file_ext == "PNG") {
echo '

';
}
}
}
?>