Re: [PHP] open/read file/directory and file test

2002-01-20 Thread bvr
Hi! You can find the PHP !manual! at http://www.php.net/manual Try searching for open , opendir, readdir .. or whatever other function you're looking for. If that doesn't give you an answer straight away, you could go back to the manual index and find the appropriate category, like Filesystem

Re: [PHP] open/read file/directory and file test

2002-01-19 Thread Miles Thompson
Juni, It's read the manual time http://www.php.net and use the function search box on the top right for "file" and then for "directory". They are separated, and there are a number of functions. As I don't know Perl I can't answer 3. (I must be morally deficient!) Miles At 04:39 AM 1/20/

Re: [PHP] open/read file/directory and file test

2002-01-19 Thread DL Neil
Juni, > On Sun, 20 Jan 2002, Juni Adi wrote: > > Hi folks, > After meessing up with installation stuffs, now > it's time for PHP code: > > 1. How to tell PHP to open a file like Perl do > through: > > open (FILE, $file); > > 2. Same question, this time to open/read a > directory: > > ope

[PHP] open/read file/directory and file test

2002-01-19 Thread Juni Adi
On Sun, 20 Jan 2002, Juni Adi wrote: Hi folks, After meessing up with installation stuffs, now it's time for PHP code: 1. How to tell PHP to open a file like Perl do through: open (FILE, $file); 2. Same question, this time to open/read a directory: opendir (DIR, $dir); and readdir DI