Tagged Questions

0
votes
2answers
31 views

PHP scandir strange behaviour

ok, so what i'm trying to do is to scan the "previous" folder. $scanned = scandir(".."); foreach($scanned as $file){ if(is_file($file)){ print $file."<br />"; } } even though in my …
0
votes
4answers
49 views

How do you get a directory listing sorted by creation date in PHP?

Hi, I have to list directories by using scandir() function but result array should be sorted according to date and time of directory created. Regards Deepak
3
votes
3answers
89 views

Sending Variables for PHP FileSystem Functions with Form Submission

I'm trying to find a secure way to do the following: Users enters value into html form. Form is submitted. PHP uses submitted value as the argument for the "scandir" function. My theory is include …