files from directory

files from directory

am 09.10.2007 10:10:26 von goldnery

I'm looking for a function that returns all files from a given
directory

Re: files from directory

am 09.10.2007 10:17:38 von Cliff Smith

"Gandalf" wrote in message
news:1191917426.823938.254970@19g2000hsx.googlegroups.com...
> I'm looking for a function that returns all files from a given
> directory
>
dir('irectoryname'

creates a pseudo object that can be examines in a loop

Check out the manual at www.php.net

Cheers

ron

Re: files from directory

am 09.10.2007 10:57:44 von goldnery

On Oct 9, 10:17 am, "Ron Barnett" wrote:
> "Gandalf" wrote in message
>
> news:1191917426.823938.254970@19g2000hsx.googlegroups.com... > I'm looking for a function that returns all files from a given
> > directory
>
> dir('irectoryname'
>
> creates a pseudo object that can be examines in a loop
>
> Check out the manual atwww.php.net
>
> Cheers
>
> ron

thanks