Re: [PHP] Listing files and their details on a text file

2002-11-18 Thread Andrew Brampton
t; <[EMAIL PROTECTED]> To: "PHP-GENERAL" <[EMAIL PROTECTED]> Sent: Tuesday, November 19, 2002 1:34 AM Subject: [PHP] Listing files and their details on a text file > Hello all, > > I need to do something that you might be able to advise me. > > I would like to li

[PHP] Listing files and their details on a text file

2002-11-18 Thread Carlos Fernando Scheidecker Antunes
Hello all, I need to do something that you might be able to advise me. I would like to list all the contents (files) of a directory in a text file. Each line/record must have the file name, date and size. Does anyone know how to do it? Thank you, C.F.Scheidecker Antunes. -- PHP General Maili

Re: [PHP] Listing files

2001-12-31 Thread Brian Clark
* Todd Cary ([EMAIL PROTECTED]) [Dec 31. 2001 11:32]: > I would like to present the surfer with a list of files in a directory > (I'll probably put then into a drop-down) and then I want to send the > file to the surfer if one is selected. I am not sure of the syntax to > 1) List the files in a

[PHP] Listing files

2001-12-31 Thread Todd Cary
I would like to present the surfer with a list of files in a directory (I'll probably put then into a drop-down) and then I want to send the file to the surfer if one is selected. I am not sure of the syntax to 1) List the files in a directory 2) Send a selected file to the surfer Many thanks

Re: [PHP] Listing files from a directory

2001-08-21 Thread Thomas Deliduka
On 8/21/2001 11:42 AM this was written: > I am trying to find a way to list files alphabetically. Try putting the filenames into an array and sort the array. -- Thomas Deliduka IT Manager - New Eve Media The Solution To Your Internet Angst http://www.neweve.com/

RE: [PHP] Listing files from a directory

2001-08-21 Thread Seb Frost
store all the names in an array and then sort that using an inbuilt php function, maybe. - seb -Original Message- From: Martin E. Koss [mailto:[EMAIL PROTECTED]] Sent: 21 August 2001 16:43 To: [EMAIL PROTECTED] Subject: [PHP] Listing files from a directory I am trying to find a way

[PHP] Listing files from a directory

2001-08-21 Thread Martin E. Koss
I am trying to find a way to list files alphabetically. " . "$entryName\n"; } } closedir($mydirectory); ?> I've looked through old messages on the subject but even though on Win32 it lists in the right way but not on the Apache Webserver. Thanks. Martin. -- PHP General Mailing List (

Re: [PHP] listing files and directories...

2001-02-20 Thread Richard Lynch
Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Message - From: "Miguel Loureiro" <[EMAIL PROTECTED]> Newsgroups: php.general Sent: Tuesday, February 20, 2001 3:38 AM Subject: [PHP] listing files and

[PHP] listing files and directories...

2001-02-20 Thread Miguel Loureiro
Hello all, To see all fields(directories and files) inside a directory I use the "dir" and "read", what I would like to know is, if there other way to do the same, others commands because now I have to problems, I want to make a sort of the list (by name or by date), and I have to use my progra