[PHP-DB] Warnings and Notices

2005-01-06 Thread Jason Davis
I just got the software I was fighting with working. Only issue now is that
the top of the page is filled with notices and warnings, even though the
code is working. Is there any way to turn off or hide these notifications?

Jason

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Warnings and Notices

2005-01-06 Thread Jochem Maas
Jason Davis wrote:
I just got the software I was fighting with working. Only issue now is that
the top of the page is filled with notices and warnings, even though the
code is working. Is there any way to turn off or hide these notifications?
read them and fix your code is one way.
another is to turn down error reporting:
http://nl2.php.net/error_reporting
Jason
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP-DB] Warnings and Notices

2005-01-06 Thread Janet Valade
Jason Davis wrote:
I just got the software I was fighting with working. Only issue now is that
the top of the page is filled with notices and warnings, even though the
code is working. Is there any way to turn off or hide these notifications?
You can set the error level in php.ini, using the description there. You 
can also set the error level per script, as follows:

http://www.php.net/manual/en/function.error-reporting.php
You can stop errors being displayed altogether. See display_errors in 
your php.ini file.

You can send your errors to a log file.
http://www.php.net/manual/en/function.error-log.php
You can stop individual warnings and messages by putting a @ in front of 
them.

Janet

--
Janet Valade -- janet.valade.com
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php