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 to list files alphabetically.

?
// list images in a drop down list
$Dir = ../Prod-Images/Thumbnails;
$mydirectory = opendir($Dir);

while($entryName = readdir($mydirectory)) {
if ($entryName[0] != .  $entryName != .  $entryName != .. 
$entryName != WS_FTP.LOG  $entryName != NA.gif  $entryName !=
NA.jpg) {
PRINT option value=\$entryName\ . $entryName/option\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 (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




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/



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]