View Single Post
ישן 18-03-06, 23:12   # 2
בניה
משתמש - היכל התהילה
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
מיקום: נחושה
הודעות: 3,434

בניה לא מחובר  

לש"ש


תנסה:
PHP קוד:
<?php
$dir 
"styles/red/images/";

// Open a known directory, and proceed to read its contents
if (is_dir($dir)) {
   if (
$dh opendir($dir)) {
       while ((
$file readdir($dh)) !== false) {
       if(
substr($file,strrpos($file'.')+1)=='gif'||substr($file,strrpos($file'.')+1)=='GIF')
           echo 
"<img src=styles/red/images/$file>";
       }
       
closedir($dh);
   }
}
?>