/*
function that reads directory content and
returns the result as links to every file in the directory
also it disply type wheather its a file or directory
*/
function DirDisply() {
$TrackDir=opendir(".");
echo "
";
while ($file = readdir($TrackDir))
{
if ($file == "." || $file == "..") { }
else
{
echo "