here is the php script without the html part...
<?php
$handle=opendir(".");
while ($file = readdir($handle))
{
if (is_dir($file) && !in_array($file,$list_ignore))
{
echo '<a class="ditem" href="'.$file.'"><img src="folder.gif" alt="image dossier" border=0 /> '.$file.'</a> <BR>';
}
}
closedir($handle);
?>

New Topic/Question
Reply




MultiQuote




|