Hm ok das ganze funktioniert, aber nun hab ich soviele ComboBoxen, wie Dateien in dem Ordner sind
Hier mal der Quelltext des ganzen:
Code:
<?php
$path = 'images/';
$
handle=opendir($path);
while ($file = readdir ($
handle)) {
if ($file != "." && $file != "..") {
$array[] = $file;
}
}
closedir($
handle);
sort($array);
foreach($array as $file) {
echo "<select name=\"testdrop\">";
$replace = "";
$file = str_replace(".JPG", $replace, $file);
$i = 1;
echo "<option value=\"Datei ".$i."\">".$file."</option>";
$i++;
echo "</select>";
}
?>