genau die meine ich auch... nachdenken!
die zeile muss so verlinkt sein, wie die weiter oben.
versuch es doch einfach mal...
die zeile muss so verlinkt sein, wie die weiter oben.
versuch es doch einfach mal...
<?php
// Recrusive function to get through all files & directories
function getFiles($dir, $depth = 0)
{
$fh = opendir($dir);
if(!$fh) return;
while (false !== ($file = readdir($fh)))
{
// Skip pointers to this and the dir above
if($file == '.' || $file == '..') continue;
// If directory => Call this function with other paramters
// again
if(is_dir($dir.'/'.$file))
{
echo str_repeat('»', $depth).'
<strong><a href=\"'.$file.'\">'.$file.'</a></strong><br />';
getFiles($dir.'/'.$file, $depth+1);
}
// If file => Just print it out
else
{
echo str_repeat('»', $depth).'
<strong><a href=\"'.$file.'\">'.$file.'</a></strong><br />';
}
}
}
getFiles('Neuer Ordner')
?>
...'<strong><a href=\"'.$file.'\">'.$file.'</a></strong><br />';
<?php
// Recrusive function to get through all files & directories
function getFiles($dir, $depth = 0)
{
$fh = opendir($dir);
if(!$fh) return;
while (false !== ($file = readdir($fh)))
{
// Skip pointers to this and the dir above
if($file == '.' || $file == '..') continue;
// If directory => Call this function with other paramters
// again
if(is_dir($dir.'/'.$file))
{
echo str_repeat('»', $depth).'
<strong><a href=\hallo/"'.$file.'\">'.$file.'</a></strong><br />';
getFiles($dir.'/'.$file, $depth+1);
}
// If file => Just print it out
else
{
echo str_repeat('»', $depth).'
<strong><a href=\hallo/"'.$file.'\">'.$file.'</a></strong><br />';
}
}
}
getFiles('Neuer Ordner')
?>
if(is_dir($dir.'/'.$file))
{
echo str_repeat('»', $depth).'
<strong><a href=\"hallo/"'.$file.'\">'.$file.'</a></strong><br />';
getFiles($dir.'/'.$file, $depth+1);
}
// If file => Just print it out
else
{
echo str_repeat('»', $depth).'
<strong><a href=\"hallo/"'.$file.'\">'.$file.'</a></strong><br />';
'<strong><a href=\"hallo/"'.$file.'\">'.$file.'</a></strong><br />';
Kommentar