<?php
$path = "/home/qeplaho/public_html/image/";
$dir_handle = @opendir($path) or die("Unable to open folder");
echo "<table>";
echo"<tr>";
while (false !== ($file = readdir($dir_handle))) {
if($file != '.' && $file != '..' && $file){
//echo "<td><input type=CHECKBOX name=$file></td>";
echo "<td><img width='200' height='200' src='/home/qeplaho/public_html/image/' ><br>
$file
</td>";
//$file
//alt='$file'
}
}
echo"<tr/>";
echo"</table>";
closedir($dir_handle);
?>
これが私のコードです。このディレクトリ「image」内のすべての画像を表示したいのですが、画像が正しく表示されず、何ができるかを分類してください。