http://www.doomportables.org/error_docs/forbidden.html
Mr. Mod
Moderator: Moderators
-
JackFrost22
- Sir Posts-alot
- Posts: 4186
- Joined: Fri Jun 04, 2004 4:10 pm
-
gannon
- Moderator
- Posts: 6974
- Joined: Sun Apr 04, 2004 4:48 pm
- Location: Near that one big lake
- Contact:
Put this script in all of your directories and name it index.php, it will allow you then browse the files in all of them 
Code: Select all
<html>
<head>
<title>Index</title>
<body>
<table border="1" cellpadding="3" cellspacing="0" bordercolor=#6394bd>
<?
$pic = opendir(".");
while($file = readdir($pic)) {
if(is_dir($file))
echo "<tr><td valign=middle align=center bgcolor=#ffffff><br><a href=$file\n>$file</a></td></tr>";
else echo "<tr><td valign=middle align=center bgcolor=#ffffff><br><a href=$file\n>$file</a></td></tr>";
}
closedir($pic);
?>
<br><br>
</table>
</body>
</html>