Hi
how do you list list file names in a directory to an array?
/S
This should give you all the file names
$handle = opendir("$dir"); while ($file = readdir($handle)) { if(is_file("$dir/$file")) // do what ever you want with the filename } closedir($handle);