我尝试显示在线目录中的图像,但图像没有正确显示或分解

时间:2013-07-06 10:39:18

标签: php

<?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);

?>

这是我的代码我想显示这个目录'图像'中的所有图像,但图像没有正确显示并分解我能做什么?pplz帮助我作为新的PHP,并提供了一个简单的解决方案与此相关

1 个答案:

答案 0 :(得分: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>";