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]

Reply via email to