[PHP] listing the files in the directory

2002-05-24 Thread _michael
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

Re: [PHP] listing the files in the directory

2002-05-24 Thread Jason Wong
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))) {

RE: [PHP] listing the files in the directory

2002-05-24 Thread _michael
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

RE: [PHP] listing the files in the directory

2002-05-24 Thread Philip Olson
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

Re: [PHP] listing the files in the directory

2002-05-24 Thread Kevin Stone
)) { // Build array of local links on this page. $links[] = $link; } } } return $links; } else { return false; } } - Original Message - From: _michael [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 24, 2002 12:12 PM Subject: RE: [PHP] listing the files