我有以下代碼從下拉菜單中選擇我的圖像。如何從下拉菜單中選擇圖像後顯示圖像?
<select name="Image2">
<option value="" selected="selected"></option>
<?php
$dir = "../files/images/product";//your path
$dh = opendir($dir);
while (false !== ($filename = readdir($dh))) {
$files[] = $filename;
echo "<option value='" . $filename . "'>".$filename."</option>"; }
sort($files);
?>
</select>
有沒有一種方法可以預覽選定的圖像? 我試着這樣說:
<img src="<?php echo $filepath.$filename ?>" />
但是它並沒有顯示任何
預覽如何?您向我們展示了輸出「select」的代碼。你不能在那裏有圖像。進一步解釋你打算如何使預覽機制起作用。 – Utkanos
你給的$ filepath是什麼? – sunny
文件路徑是在這種情況下選定文件的路徑../files/images/product – Ria