Need help for a php script / page for generating links to folders. Have a homepage with photos that I upload using Lightroom – each album in a separate folder.
The structure is:
mysite.com
|--images
|--folder1
|--folder2
|--folder3
.
.
So I would like to end up with a dynamic index.php file that generates links to all the subfolders of “images” instead of the static index.html file I got in the root of mysite.com:
<html>
<body>
<a href="mysite.com/images/folder1" target="_blank">folder1</a>
<a href="mysite.com/images/folder2" target="_blank">folder2</a>
<a href="mysite.com/images/folder3" target="_blank">folder3</a>
.
.
</body>
</html>
Thanx in advance