ok, i'm trying to make my own file manager to suit my needs and well, i'm having a problem. Iwant a folder icon to appear next to the folders and file next to files and well, ITS NOT WORKING, when i run it the icons appear but only the first two folders get the folder icon. the folders . and .. , please help
<?php
$current_dir = '/home/<<username>>/public_html/';
$dir = opendir($current_dir);
echo "Current directory is $current_dir<br />";
echo 'Directory Listing:<br /><hr /><br />';
while ($file = readdir($dir))
{
if(is_dir($file))
{
echo '<img src="fileman\folder.gif">';
}
else
{
echo '<img src="fileman\file.gif">';
}
echo "<a href='filedet.php?file=" . $file . "'>" . $file . "<br />";
}
echo '<hr /><br />';
closedir($dir);
?>