2013-07-06 52 views
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); 

?> 

這裏是我的代碼,我想將此目錄「形象」中無法正常顯示的所有圖像,但圖像,打破了我可以做?PPLZ幫助我即時通訊新的PHP和我提供與此相關的我試圖表明,從在線目錄的圖像,但圖像沒有顯示正確或分解

回答

1

您可能需要使用此

echo "<td><img width='200' height='200' src='/image/$file'/></td>"; 
替換此

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

一個簡單的解決方案

+0

thanx很多它工作正常 –

+1

然後,你應該標記我的答案是正確的。 – mzedeler