Re: [PHP] fopen - warnings

2001-07-27 Thread Nessi
That works! Thanks a lot :) Cheers, Nessi At 17:11 26/07/01 , you wrote: try @fopen(categories.txt,r+); - Original Message - From: Vanessa [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 26, 2001 12:05 PM Subject: [PHP] fopen - warnings Hello List, this is probably

Re: [PHP] fopen - warnings

2001-07-27 Thread Slavomir Slizik
... if ($datei = @fopen($file[$i], r+)) ... On Thu, 26 Jul 2001, Vanessa wrote: Hello List, this is probably a very stupid question, but I dont know how to solve this little problem: I have a script with which text files (exported access db data sheets) can be uploaded to the mysql

[PHP] fopen - warnings

2001-07-26 Thread Vanessa
Hello List, this is probably a very stupid question, but I dont know how to solve this little problem: I have a script with which text files (exported access db data sheets) can be uploaded to the mysql tables. It all works fine, but very annoyingly I get warning messages, if the text file is

Re: [PHP] fopen - warnings

2001-07-26 Thread david jarvis
try @fopen(categories.txt,r+); - Original Message - From: Vanessa [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 26, 2001 12:05 PM Subject: [PHP] fopen - warnings Hello List, this is probably a very stupid question, but I dont know how to solve this little problem: I

RE: [PHP] fopen - warnings

2001-07-26 Thread Taylor, Stewart
Assuming that your code works fine apart from the warning message you can use @ so suppress any warning messages e.g. @fopen( -Stewart -Original Message- From: Vanessa [mailto:[EMAIL PROTECTED]] Sent: 26 July 2001 17:06 To: [EMAIL PROTECTED] Subject: [PHP] fopen - warnings Hello