Re: [PHP] Hide Warnings

2006-11-18 Thread Stein Ivar Johnsen
Thanks to all that replied to my message. I have managed to fix the problem with help from Tom Chubb, ThanX Tom! I made my own php.ini file with the keywords I needed, and uploaded it to the same dir as my script. Now it works fine -- Regards sijo http://www.dyg.no Tom Chubb [EMAIL

[PHP] Hide Warnings

2006-11-17 Thread Stein Ivar Johnsen
Hi.. How can I hide Warning messages so they are not shown on screen..: Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time

Re: [PHP] Hide Warnings

2006-11-17 Thread Tom Chubb
Choose one of the following, but if you are getting warnings, something is wrong and you should address it. ?php // Turn off all error reporting error_reporting(0); // Report simple running errors error_reporting(E_ERROR | E_WARNING | E_PARSE); // Reporting E_NOTICE can be good too (to report

Re: [PHP] Hide Warnings

2006-11-17 Thread clive
Stein Ivar Johnsen wrote: Hi.. How can I hide Warning messages so they are not shown on screen..: look in your php.ini file and set error_reporting to an appropriate value or set display_errors to off -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Hide Warnings

2006-11-17 Thread Stein Ivar Johnsen
I have tried error_reporting(0); but this does not help. The program is still writing warnings to screen. My ISP is using PHP Version 4.3.10 if that is any help. I have no access to the PHP.INI file. Any more ideas, please? -- Regards sijo http://www.dyg.no Tom Chubb [EMAIL PROTECTED] skrev

Re: [PHP] Hide Warnings

2006-11-17 Thread Stein Ivar Johnsen
Sorry, I have no access to my ISP's php.ini file. I need to turn off warnings in the php script code? -- Regards sijo http://www.dyg.no clive [EMAIL PROTECTED] skrev i melding news:[EMAIL PROTECTED] Stein Ivar Johnsen wrote: Hi.. How can I hide Warning messages so they are not shown on

Re: [PHP] Hide Warnings

2006-11-17 Thread clive
Stein Ivar Johnsen wrote: I have tried error_reporting(0); but this does not help. The program is still writing warnings to screen. My ISP is using PHP Version 4.3.10 if that is any help. I have no access to the PHP.INI file. Any more ideas, please? fix the code thats generating the errors?

Re: [PHP] Hide Warnings

2006-11-17 Thread Kevin Waterson
This one time, at band camp, Stein Ivar Johnsen [EMAIL PROTECTED] wrote: Hi.. How can I hide Warning messages so they are not shown on screen..: code properly... -- Democracy is two wolves and a lamb voting on what to have for lunch. Liberty is a well-armed lamb contesting the vote. --

Re: [PHP] Hide Warnings

2006-11-17 Thread Eric Butera
On 11/17/06, Stein Ivar Johnsen [EMAIL PROTECTED] wrote: Sorry, I have no access to my ISP's php.ini file. I need to turn off warnings in the php script code? -- Regards sijo http://www.dyg.no clive [EMAIL PROTECTED] skrev i melding news:[EMAIL PROTECTED] Stein Ivar Johnsen wrote: Hi..