Jump to content

[SOLVED] PHP directory listing script question *please help*


cmbcorp

Recommended Posts

Hi,

 

I have a directory listing php script on my server and i only want to display the directorys in the list and not the files with extensions.

 

can anyone assist me with this?

 

i would really appreciate your help.

 

Cheers,

 

*** my code is as follows:***

<?php 
$dir = './'; 
if (is_dir($dir)) { 
if ($dh = opendir($dir)) { 
while (($file = readdir($dh))!== false) { 
if($file <> '.' && $file <> '..') echo '<a href="'.$file.'">'.$file.'</a><br />'; 
} 
closedir($dh); 
} 
} 
?> 

i didnt test this, please try

 

<?php

$dir = './';

if (is_dir($dir)) {

if ($dh = opendir($dir)) {

while (($file = readdir($dh))!== false) {

if(filetype($file)=='dir')

  echo '<a href="'.$file.'">'.$file.'</a><br />';

}

closedir($dh);

}

}

?>

i didnt test this, please try

 

<?php

$dir = './';

if (is_dir($dir)) {

if ($dh = opendir($dir)) {

while (($file = readdir($dh))!== false) {

if(filetype($file)=='dir')

  echo '<a href="'.$file.'">'.$file.'</a><br />';

}

closedir($dh);

}

}

?>

 

mate.. thanks. that works great...

 

one thing though

 

it displays the dirs like this:

 

..[/url] NandosBendigo[/url] .[/url] NandosLysterfield[/url] NandosShepparton[/url]

 

anyway to get the list downwords and not side ways?

cheers.

 

thanks for your help.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.