Modifying the following script how would I make it read from /home/htdocs/mods instead of from /home/htdocs??
Thanks in advance for your help DUDES!!!!
if(!isset($BASEDIR)) { $BASEDIR = "."; }
$current_directory = opendir($BASEDIR);
while ($entry_name = readdir($current_directory))
{
if (ereg (".", $entry_name))
{
continue;
}
if(is_dir($orig_dir.$entry_name))
{
print "<font size='3'><a href='$entry_name'>$entry_name</a></font><br>";
}
}