Ad Code

Display All Images With Image Name From A Folder Using PHP

You can display all image from a folder using simple php script. Suppose folder name "images" and put some image in this folder then you a editor and paste this code and run this script.

This is php code

1
2
3
4
5
6
7
8
9
10
11
<?php $files = glob("images/*.*"); for ($i=0; $i<count($files); $i++){ $image = $files[$i]; $supported_file = array( 'gif', 'jpg', 'jpeg', 'png' ); $ext = strtolower(pathinfo($image, PATHINFO_EXTENSION)); if (in_array($ext, $supported_file)) { echo basename($image)."<br />"; // show only image name if you want to show full path then use this code // echo $image."<br />"; echo '<img src="'.$image .'" alt="Random image" />'."<br /><br />"; }else{ continue; } } ?>

Post a Comment

0 Comments