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和我提供與此相關的我試圖表明,從在線目錄的圖像,但圖像沒有顯示正確或分解
thanx很多它工作正常 –
然後,你應該標記我的答案是正確的。 – mzedeler