Is there a way that PHP can read files on a server, and then write the names of those files onto a page.
For example, say I have a folder on my server, and in the folder I have the following files:
steve.avi
mike.avi
joe.avi
I want to be able to write to a document those file names. So the document would read:
Files on server:
steve.avi
mike.avi
joe.avi
The file names would be dynamically written to the page.
Is this possible?
Thanks in advance for any help!
Naveen