Posted by Noodle on 09/11/06 12:30
jerryyang_la1@yahoo.com wrote:
> I'm looing for a simple PHP file list program, that will show all the
> files in a folder, but show them in batchs of 10 - 15..
>
> Any ideas??
>
> Many Thanks
This is a little crude but it should get the job done.
<?php
if ($handle = opendir('.')) {
$count = 0;
while (false !== ($file = readdir($handle))) {
echo $count == 0 ? "<ol>" : "";
echo "<li>$file</li>";
$count++;
if($count == 10){
echo "</ol>";
$count = 0;
}
}
echo $count != 10 ? "</ol>" : "";
closedir($handle);
} ?>
[Back to original message]
|