Aktueller Pfad?

Danke, wenn du mir jetzt noch sagen kannst wie ich es hinbekomme das des script eine als $pic definierte variable nach ordner oder datei sortiert (also z.B. if $file == Ordner echo "<img src=ordner.gif>" else $pic == "<img src=file.gif>" <------ schemabeispiel) für das script:

PHP:
<style type=text/css>
body {background-color: DBE7F5; margin: 2px
}
a {font-family: verdana; font-size:8pt; text-decoration:none; font-style: none; color: black}
</style>
<?
$uri = $_SERVER['REQUEST_URI'];
$path = "/homepages/7/d101401614/htdocs$uri";	// Open the folder	
$dir_handle = @opendir($path) or die("Unable to open $path");	// Loop through the files 
while ($file = readdir($dir_handle))
{ 
if($file == "." || $file == ".." || $file == "index.php" || $file == "dir.gif"
)
 
continue;
 
 
 
echo "<a href=\"$file\">$file</a></span><br />";	}	// Close	closedir($dir_handle);
 
?>
 
hat sich erledigt habs gefunden... für die nachwelt:
PHP:
<style type=text/css>
body {background-color: DBE7F5; margin: 2px
}
a {font-family: verdana; font-size:8pt; text-decoration:none; font-style: none; color: black}
</style>
<?
$uri = $_SERVER['REQUEST_URI'];
$path = "/homepages/7/d101401614/htdocs$uri";	// Open the folder	
$dir_handle = @opendir($path) or die("Kann $path nicht öffnen");	// Loop through the files   
while ($file = readdir($dir_handle))
 {   
  if($file == "." || $file == ".." || $file == "index.php" || $file == "dir.gif"
   )
   
continue;
 
 
 if (is_dir($path.'/'.$file)) { 
echo "<img src=dir.gif><a href=\"$file\">$file</a></span><br/>";  
} 
else {
 echo "<img src=file.gif><a href=\"$file\">$file</a></span><br/>";
}
 }// Close	closedir($dir_handle);
 
?>
 
Zurück