|
If you want to just drop it in a directoty and browse to that file, call it something like "listfiles.php" and change these 3 lines:
$fd = fopen("outputfile.html",w);
fwrite($fd,$text);
fclose($fd);
to simply
echo $text;
then in your browser just:
http ://www.yourdomain.com/pathto/listfiles.php
|