On the JSLabs Blog today, there's a quick new tutorial showing how to create an image gallery script to show off your latest photos and other images to the world.
This is a simple yet useful tutorial on how to write an image gallery script in PHP. It could be used for anything from banner rotation to just a couple of images that you would like to display in rotation on your website.
The code is broken up into two functions - GetAllFiles (grabs the files from the current directory) and DisplayImages (outputs the HTML to display and organize the images). The script doesn't require any external libraries and the functionality in it works with PHP 4.3.0 and above.
It's nothing fancy, but if you need a script to show the images in a directory (it can tell the difference between image and non-image), check this out.