Jump to content

Simple PHP Page with Folder Structure and Nothing More


Glese

Recommended Posts

I'm trying to showcase the folder structure of a folder contained with jpg files on a simple PHP web document.

 

I'm looking into an automatic system, so that every time I add another photo to the folder on the web server the ascend name becomes visible on the web document.

 

Any suggestions?

 

P.S.: I'm just starting out, thus the vague question.

glob will return you a sorted list of files matching a simple pattern. For example:

 

$images = glob('*.jpg');

 

If you want to make the pattern a little more flexible you can use the "GLOB_BRACE" flag:

 

$images = glob('{*.jpg, *.jpeg}', GLOB_BRACE);

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.