1
<?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」内のすべての画像を表示したいのですが、画像が正しく表示されず、何ができるかを分類してください。

4

1 に答える 1

1

おそらくこれを交換する必要があります

echo "<td><img width='200' height='200' src='/home/qeplaho/public_html/image/'  ><br>
      $file
</td>";

これとともに

echo "<td><img width='200' height='200' src='/image/$file'/></td>";
于 2013-07-06T10:41:20.930 に答える