Re: [PHP] List all files in directory

2007-03-07 Thread Tijnema !
On 3/6/07, Jay Blanchard [EMAIL PROTECTED] wrote: [snip] Oh, yes, about that, how do you _really_ use PHP to do some reading on the client machine... like say. listing files... ;D [/snip] You're kidding, right? Here's how, set up a PHP enabled.nah, never mind. Just repeat to yourself

[PHP] List all files in directory

2007-03-06 Thread Helder Lopes
Hi people How to php give to me a list of all files in one directory to make an editor???

RE: [PHP] List all files in directory

2007-03-06 Thread Jay Blanchard
[snip] How to php give to me a list of all files in one directory to make an editor??? [/snip] RTFM, seriously. http://www.php.net/readdir -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] List all files in directory

2007-03-06 Thread Jochem Maas
Helder Lopes wrote: Hi people How to php give to me a list of all files in one directory to make an editor??? if you can't figure out how to get a list of files from a directory using php then how do you expect to write a fully fledged 'editor'? RTFM ... there are examples that show you how

Re: [PHP] List all files in directory

2007-03-06 Thread Tom Chubb
On 06/03/07, Helder Lopes [EMAIL PROTECTED] wrote: Hi people How to php give to me a list of all files in one directory to make an editor??? http://php.net/readdir -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] List all files in directory

2007-03-06 Thread Jim Moseby
Helder Lopes wrote: Hi people How to php give to me a list of all files in one directory to make an editor??? if you can't figure out how to get a list of files from a directory using php then how do you expect to write a fully fledged 'editor'? RTFM ... there are examples

RE: [PHP] List all files in directory

2007-03-06 Thread Jay Blanchard
[snip] Oh, yes, about that, how do you _really_ use PHP to do some reading on the client machine... like say. listing files... ;D [/snip] You're kidding, right? Here's how, set up a PHP enabled.nah, never mind. Just repeat to yourself Dorothy, PHP is server-side, not client-side.. --

Re: [PHP] List all files in directory

2007-03-06 Thread Børge Holen
On Tuesday 06 March 2007 23:36, Jay Blanchard wrote: [snip] Oh, yes, about that, how do you _really_ use PHP to do some reading on the client machine... like say. listing files... ;D [/snip] You're kidding, right? Here's how, set up a PHP enabled.nah, never mind. Just repeat to

Re: [PHP] List all files in directory

2007-03-06 Thread Børge Holen
On Tuesday 06 March 2007 22:34, Jim Moseby wrote: Helder Lopes wrote: Hi people How to php give to me a list of all files in one directory to make an editor??? if you can't figure out how to get a list of files from a directory using php then how do you expect to write a

[PHP] List all files in remote url ?

2004-05-25 Thread Dave Carrera
Hi List, I am trying to list all files in a remote url for processing into my attempt at a search engine but I cant work out how to list the files found in a given domain name. The manual has nothing on this, as I can see, and searching the web has drawn a blank. So I ask the list if there is a

Re: [PHP] List all files in remote url ?

2004-05-25 Thread Oliver Hankeln
Dave Carrera wrote: Hi List, I am trying to list all files in a remote url for processing into my attempt at a search engine but I cant work out how to list the files found in a given domain name. The manual has nothing on this, as I can see, and searching the web has drawn a blank. So I ask the

[PHP] List of files?

2001-08-21 Thread Seb Frost
OK so I'vebeen reading about reading and writing to/from files, but what I want to do is (I think) simpler than this. Basically I want to look at a directory and be able to get a list of all subdirectories and then a list of the files in each directory. Can someone give me a hint? cheers

Re: [PHP] List of files?

2001-08-21 Thread * RzE:
On Tue, Aug 21, 2001 at 01:26:27PM +0100, Seb Frost wrote: OK so I'vebeen reading about reading and writing to/from files, but what I want to do is (I think) simpler than this. Basically I want to look at a directory and be able to get a list of all subdirectories and then a list of the

Re: [PHP] List of files?

2001-08-21 Thread Brian C. Doyle
Here is some code that I use to do what you wanted and attach is the files for the folders. This uses javascript that works well with Internet Explorer and creates sublist that appear in the folder. ? error_reporting (E_ALL ^ E_NOTICE); ? !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0

Re: [PHP] List of files?

2001-08-21 Thread Hugh Danaher
how about readdir() in a while loop. - Original Message - From: Seb Frost [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 21, 2001 5:26 AM Subject: [PHP] List of files? OK so I'vebeen reading about reading and writing to/from files, but what I want to do is (I think