Possible Duplicate:
Loop code for each file in a directory
I assumed that I can reach this with following code but i think i make someting wrong with this code include($file[$])
<?php
$dir= opendir(".") or die ('Cannot open directory');
$div="<div class=\"left1\">\n";
echo "<div class=\"wrapper\">\n";
for( $i=0; $i<6; $i++){
while(($file = readdir($dir)) != false){
if(preg_match("/php$/", $file)){
echo $div;
include($file[$i]); // HERE ITS NOT WORKING AS I WANT
echo "</div>\n";
}
}
}
echo "</div>\n";
?>