I'd do it with PHP. Actually, I'm pretty sure that's the only option, but - since it looks like you have PHP up-and-running on your server, just insert some PHP code like this anywhere you want on the page:
PHP Code:
<?php //The path to the directory you want to parse $path = 'books/';
$dir_handle = opendir($path) or die("ERROR LISTING BOOKS");
//Loop while (false !== ($file = readdir($dir_handle))) { echo '<p>HTML FORMATTING! '.$file.'</p>'; }
closedir($dir_handle); ?>
That should work, just for listing the files. Of course, it'll just give you the barebones names of the files, not the nice looking name of the book or the author. There are ways to do that, but it gets a little complicated.
__________________
if($stevej == "helpful") { $talkupation += $user_power; }
|