well do you think you can point me in the right direction to listing the
files on my site? - is it possible (as i said i am very new to this)

thanks

-----Original Message-----
From: Jason Wong [mailto:[EMAIL PROTECTED]]
Sent: 24 May 2002 19:09
To: [EMAIL PROTECTED]
Subject: Re: [PHP] listing the files in the directory


On Saturday 25 May 2002 02:01, _michael wrote:
> hi, i'm pretty new to php - i am trying to list/print a list of files and
> folders that are on my server:
>
> from my little knowledge i have got:
>
> <?php
> $dir = "http://mysite.com/";;
> $handle = opendir($dir);
> while (($file = readdir($handle))) {
>     if ($file != "." && $file != "..") {
>         echo "- " . $file . "<br>";
>     }
> }
> ?>
>
> i keep getting errors - will this code list the files on my site?

No. You can only opendir() a local filesystem.

--
Jason Wong -> Gremlins Associates -> www.gremlins.com.hk
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *

/*
It's clever, but is it art?
*/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to