Skip to content

Instantly share code, notes, and snippets.

@projectxcappe
Created September 15, 2011 23:22
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save projectxcappe/1220777 to your computer and use it in GitHub Desktop.
Save projectxcappe/1220777 to your computer and use it in GitHub Desktop.
Display Images From A Folder with PHP
//Display Images From A Folder with PHP
<?php
$files = glob("images/*.*");
for ($i=1; $i<count($files); $i++)
{
$num = $files[$i];
echo '<img src="'.$num.'" alt="random image">'."&nbsp;&nbsp;";
}
?>
//Display Images With Image Name From A Folder
<?php
$files = glob("images/*.*");
for ($i=1; $i<count($files); $i++)
{
$num = $files[$i];
print $num."<br />";
echo '<img src="'.$num.'" alt="random image" />'."<br /><br />";
}
?>
//Using lightbox
<!-- Start VisualLightBox.com HEAD section -->
<link rel="stylesheet" href="engine/css/vlightbox1.css" type="text/css" />
<link rel="stylesheet" href="engine/css/visuallightbox.css" type="text/css" media="screen" />
<script src="engine/js/visuallightbox.js" type="text/javascript"></script>
<script src="engine/js/vlbdata.js" type="text/javascript"></script>
<!-- End VisualLightBox.com HEAD section -->
</head>
<body>
....
<div id="vlightbox1">
<?php
$thumbs = glob("data/facepainting_thumbs/*.*");
$images = glob("data/facepainting_images/*.*");
for ($i=1; $i<count($thumbs); $i++)
{
$numT = $thumbs[$i];
$numI = $images[$i];
echo '<a class="vlightbox1" href="'.$numI.'" title="'.$i.'"><img src="'.$numT.'"/></a>';
}
?>
</div>
....
@riki1972
Copy link

Change this
print $num ."
";
with this
print basename($num) ."
";

@therealabaaskills
Copy link

Amazing, thanks.

I wish to see how to display img_name also 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment