ok so I use this to read the directory and convert to links
<?php
$dir = "..\mydir";
if ($url = opendir($dir)) {
while (false !== ($file = readdir($url))) {
echo "<a href=\"$dir.$file\">$file</a><br>\n";
}
closedir($url);
}
?>
how to get rid of the . single dot [.] and double dot [..] directories and trunkate??