[PHP] Re: Listing files

2001-12-31 Thread George Nicolae
sional 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

[PHP] Re: Listing files

2001-12-31 Thread George Nicolae
$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; } $