View Single Post
ישן 30-04-10, 13:09   # 5
M.a.T.a.N
חבר על
 
מיני פרופיל
תאריך הצטרפות: Jan 2009
הודעות: 755

M.a.T.a.N לא מחובר  

בטח אחי..
זה הקוד:
PHP קוד:
    $count '0';
    if (
$handle opendir('img/icons/')) {
        while (
false !== ($file readdir($handle))) {
            if (
$file != "." && $file != "..") {
                
$count ++; 
             
rename("img/icons/".$file"img/icons/ico_".$count.".gif"); 
    }
        }
        
closedir($handle);
    } 
  Reply With Quote