View Single Post
Old 10-03-2004, 08:30 PM  
European Lee
Confirmed User
 
Join Date: Dec 2002
Location: Daytona Beach
Posts: 7,133
Patricia..

Try this...

PHP Code:
<?php 

// PRINT DOMAINS 

$dirhandleopendir("/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
European Lee is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote