PHP ver gevorderde |
|
Met de code krijg ik de dirs gewoon door elkaar (2, 3, 1 ipv 1, 2, 3)
if($dir != $startDir.'/' && $dir != $startDir)
{
if($handle = opendir($dir))
{
unset($img);
$img = array();
while (false !== ($file = readdir($handle)))
{
if($file != '.' && $file != '..')
{
$ext = array_pop(explode('.', $file));
if(in_array($ext, $bestandtypes))
{
array_push($img, $file);
}
if(is_dir($dir.'/'.$file))
{
echo '<a href="index.php?d='.str_rot13(encode5t($d.'/'.$file)).'">'.$file.'</a><br />';
}
}
}
closedir($handle);
}
}
if($dir != $startDir.'/' && $dir != $startDir) { { while (false !== ($file = readdir($handle))) { if($file != '.' && $file != '..') { { } { echo '<a href="index.php?d='.str_rot13(encode5t ($d.'/'.$file)).'">'.$file.'</a><br />'; } } } } }
Iemand enig idee waar ik moet sorten?
|