このドロップダウン リストには、フォルダのすべてのファイルが表示され、そのうちの 1 つが選択されて使用されます。ページを読み込んだときにどのファイルが選択されているかを表示する方法はありますか? 現時点では、毎回「ファイルを選択してください」と表示されます。
<select name="image" type="text" class="box" id="image" value="<?=$image;?>">
<option value='empty'>Select a file</option>
<?php
$dirname = "images/";
$images = scandir($dirname);
// This is how you sort an array, see http://php.net/sort
natsort($images);
// There's no need to use a directory handler, just loop through your $images array.
foreach ($images as $file) {
if (substr($file, -4) == ".gif") {
print "<option value='$file'>$file</option>\n"; }
}
?>
</select>