List filnavne i DIR og put i FORM (select)
Jeg vil gerne kunne liste filnavne i DIR (Billeder)på serveren og putte resultatet i en FORM (select).Fandt dette - ved ikke om det er noget af "vejen"?
//DIR ONLY OPTION 1: if(is_dir($full_path)){ $list[]=$full_path; }
//FILE ONLY OPTION 2: if(is_file($full_path)){ $list[}=$full_path; }
function make_tree($path){ //where $path is your source dir.
$handle=opendir($path);
while($a=readdir($handle)){
if(!preg_match('/^\./',$a)){
$full_path="$path/$a";
$list[]=$full_path; // REPLACE WITH OPTION IF NEEDED.
if(is_dir($full_path)){
$recursive=make_tree($full_path);
for($n=0; $n<count($recursive); $n++){
$list[]=$recursive[$n];
}
}
}
}
closedir($handle);
return $list;
}