i have the code below
**
*if ($dir = @opendir("dir2open"))
{
while($file = readdir($dir)) {
//if (($file!='.') && ($file!='..') && ($file!='.htaccess') && ($file!='
index.php')) {
// if (is_dir($file)) { // print just "." & ".."
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
// if (is_file($file)) { // works fine
if (!is_file($file) & ($file!='.') && ($file!='..') ) { // works fine (print
dir)

print $file."<br>";
}
}
}

closedir($dir);
*
the problem is that, function is_dir() returns true only for "." and ".."
is_file works fine, and I used !is_file() but ..... the question is: what is
wrong here?
 i use php4, but i don't think is a bug

Reply via email to