I have 1000 galleries I made,
On my hard drive and on the ftp
Now I want a page of links to all of them...
Any easy way to do that?
On my hard drive and on the ftp
Now I want a page of links to all of them...
Any easy way to do that?
<?php
$file_dir="./";
$dir=opendir($file_dir);
while($file=readdir($dir))
{
if ($file != "." && $file != ".." && $file != "index.php")
{
for($x=0;$x<=count($file);$x++)
{
if($x<count($file))
{
echo "<a href=\"".$file."\">".$file."</a><br />\n";
}
}
}
}
?>
Comment