I am very honour of your suggestion but I am not the author of the function GetDirArray($sPath). The author is [EMAIL PROTECTED] (I don't know him). It isn't ethic to publish this function under my name.
Best regards, George Nicolae IT Manager ___________________ X-Playin - Professional Web Design www.x-playin.f2s.com ----- Original Message ----- From: "Boaz Yahav" <[EMAIL PROTECTED]> To: "George Nicolae" <[EMAIL PROTECTED]> Sent: Monday, December 31, 2001 9:05 PM Subject: RE: [PHP] Re: Listing files This looks like a great example to add to weberdev. Care to spend 3 minutes and let other PHP developers enjoy from your experience? You are one click away from doing a good deed :) http://www.weberdev.com/index.php3?GoTo=addexample.php3 Sincerely berber Visit http://www.weberdev.com Today!!! To see where PHP might take you tomorrow. -----Original Message----- From: George Nicolae [mailto:[EMAIL PROTECTED]] Sent: Monday, December 31, 2001 7:00 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: Listing files $path="c:/";//your path function GetDirArray($sPath) { //Load Directory Into Array $handle=opendir($sPath); while ($file = readdir($handle)) if(($file!=".")&($file!="..")) $retVal[(isset($retVal))?count($retVal):0] = $file; //Clean up and sort closedir($handle); sort($retVal); return $retVal; } $a=GetDirArray($path); //echo "test".count($a); //for ($i=0;$i<count($a);$i++) echo $a[$i]."<br>"; ?> <select name="select"> <? for ($i=0;$i<count($a);$i++) { ?> <option value="test" onchange='location="//go to the specific location and/or file"'><?echo $a[$i];?></option> <? } ?> </select> -- "Todd Cary" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > 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 for any help in getting the correct syntax to do this...... > > Todd > > -- > Todd Cary > Ariste Software > [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] -- 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]