A
Anonymous
Guest
I never did it before, but you might start by looking into:
scandir()
filectime()
Maybe use scandir() to get an array of filenames in a directory and then you could probably cycle through the array of files and use a function like filectime() to see what the date on the file is.
There may be an easier way, but at least that is a good place to start looking. check php.net and put in dir and file to get a list of functions for each.
scandir()
filectime()
Maybe use scandir() to get an array of filenames in a directory and then you could probably cycle through the array of files and use a function like filectime() to see what the date on the file is.
There may be an easier way, but at least that is a good place to start looking. check php.net and put in dir and file to get a list of functions for each.