You could write a little something in PHP, or some other scripting language, to read the directory's contents, and build an HTML string for each image it finds.
If you want to use PHP, you could read this: PHP: readdir - Manual
You could then put these in whatever layout you wanted, and put the "height" and/or "width" attributes in the <img> tag, and get as fancy as you wanted. It wouldn't take a whole lot to get your own dynamic homemade gallery up. It would be "dynamic" in that it would automatically show what pictures you have in your directory without having to update the code if you added or removed pictures.
|