here is my little code:
<?php
$dir1 = $filex.'/88x31';
$filecount1 = 0;
$d1 = dir($dir1);
while ($f1 = $d1->read()) {
if(strstr( $f1, '.htm' )) continue;
if(($f1!= '.') && ($f1!= '..')) {
if(!is_dir($f1)) $filecount1++;
}
}
?>
how can i add more file extensions to this code to be excluded!?