RE: [PHP-WIN] Newbie attempting file open...

2003-03-11 Thread William Fisher
-Original Message- From: Luis Moreira To: Svensson, B.A.T. (HKG); ''William Fisher ' ' Cc: [EMAIL PROTECTED] Sent: 2003-03-11 15:42 Subject: Re: [PHP-WIN] Newbie attempting file open... What for ? The option "r" stans for "read". If what William is doing

RE: [PHP-WIN] Newbie attempting file open...

2003-03-11 Thread Svensson, B.A.T. (HKG)
ra To: Svensson, B.A.T. (HKG); ''William Fisher ' ' Cc: [EMAIL PROTECTED] Sent: 2003-03-11 15:42 Subject: Re: [PHP-WIN] Newbie attempting file open... What for ? The option "r" stans for "read". If what William is doing is try to read a file, and then create

Re: [PHP-WIN] Newbie attempting file open...

2003-03-11 Thread Luis Moreira
27;William Fisher ' '" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, March 11, 2003 2:00 PM Subject: RE: [PHP-WIN] Newbie attempting file open... > Luis, read the code once again.... > > -Original Message- > From: Luis Moreira > To:

RE: [PHP-WIN] Newbie attempting file open...

2003-03-11 Thread Svensson, B.A.T. (HKG)
Luis, read the code once again -Original Message- From: Luis Moreira To: 'William Fisher ' Cc: [EMAIL PROTECTED] Sent: 2003-03-11 12:03 Subject: Re: [PHP-WIN] Newbie attempting file open... No need. It's the other way around, actually. The option that creates if the th

Re: [PHP-WIN] Newbie attempting file open...

2003-03-11 Thread Luis Moreira
er '" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, March 11, 2003 9:15 AM Subject: RE: [PHP-WIN] Newbie attempting file open... > You may want to try something like this: > > $fp = @fopen(,"r"); > > if ($fp) > { > print"An old file

RE: [PHP-WIN] Newbie attempting file open...

2003-03-11 Thread Svensson, B.A.T. (HKG)
liam Fisher To: [EMAIL PROTECTED] Sent: 2003-03-10 19:54 Subject: [PHP-WIN] Newbie attempting file open... The Question: It is my understanding that fopen() using the "r" option will either open the indicated file for read only OR create one if it doesn't exist. fopen() is giving m

RE: [PHP-WIN] Newbie attempting file open...

2003-03-11 Thread Svensson, B.A.T. (HKG)
http://www.php.net/manual/en/function.fopen.php -Original Message- From: William Fisher To: [EMAIL PROTECTED] Sent: 2003-03-10 19:54 Subject: [PHP-WIN] Newbie attempting file open... The Question: It is my understanding that fopen() using the "r" option will either open the

[PHP-WIN] Newbie attempting file open...

2003-03-10 Thread William Fisher
The Question: It is my understanding that fopen() using the "r" option will either open the indicated file for read only OR create one if it doesn't exist. fopen() is giving me this error when trying to create/open a file. Warning: fopen(c:/program files/apache group/apache/htdocs/test.txt)