Re: [PHP] Hiding Errors

2002-12-05 Thread Richard Baskett
If it is a function that you are getting an error on, just go ahead and put a '@' sign before the function so for example @fopen(); or you can change the error reporting in the php.ini file. I do believe there is an error reporting function also, but off the top of my head I cant remember what it

Re: [PHP] Hiding Errors

2002-12-05 Thread bahwi
I'm not too familiar with this method, but trying putting the @ symbol in front of the statement. ex: $file = @fopen(.); Hope this helps. --Joseph Guhlin http://www.josephguhlin.com/ Web Programmer / Unix Consultant / PHP Programmer -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] Hiding Errors

2002-12-05 Thread Brad Pauly
On Thu, 2002-12-05 at 14:32, vernon wrote: Is there a way to have errors in script not output to the screen? I have a page that creates an error which really isn't a problem and I don't want users to see the error message. You can also use set_error_handler to deal with errors however you

RE: [PHP] Hiding Errors

2002-12-05 Thread John W. Holmes
Is there a way to have errors in script not output to the screen? I have a page that creates an error which really isn't a problem and I don't want users to see the error message. If this is a production machine, you should have display.errors OFF in php.ini ---John Holmes... -- PHP