Patricia..
Try this...
PHP Code:
<?php
// PRINT DOMAINS
$dirhandle= opendir("/www/virtual/gamedia/html");
$number_of_links = 0;
while($filename = readdir($dirhandle)) {
if ($filename != ".") {
if ($filename != "..") {
$filenames[]=$filename;
}
}
}
closedir($dirhandle);
sort($filenames);
for($i=0; $i < count($filenames); $i++) {
print("<FONT FACE=\"Arial, Helvetica\" SIZE=2>$filenames[$i]</FONT><BR>");
}
?>
Cut n paste that into notepad, save it as domains.php or whatever, upload to a domain and call it from the web
Regards,
Lee