Re: [PHP] Something difference betwen php-4.0.3 and php-4.2.3

2003-01-24 Thread andre . lagadec
Hi, I modifiy my php.ini to redirect error message in log of server web and I change error_reporting = E_ALL ~E_NOTICE by error_reporting = E_ALL Now, I get in server log this message : [24-Jan-2003 08:59:31] PHP Notice: Undefined offset: 4 in /appli/PHP/test/__xyz__.php on line 15 and I

Re: [PHP] Something difference betwen php-4.0.3 and php-4.2.3

2003-01-24 Thread Chris Hewitt
[EMAIL PROTECTED] wrote: I modifiy my php.ini to redirect error message in log of server web and I change error_reporting = E_ALL ~E_NOTICE by error_reporting = E_ALL Now, I get in server log this message : [24-Jan-2003 08:59:31] PHP Notice: Undefined offset: 4 in

RE: [PHP] Something difference betwen php-4.0.3 and php-4.2.3

2003-01-24 Thread Ford, Mike [LSS]
-Original Message- From: Chris Hewitt [mailto:[EMAIL PROTECTED]] Sent: 24 January 2003 09:13 [EMAIL PROTECTED] wrote: I modifiy my php.ini to redirect error message in log of server web and I change error_reporting = E_ALL ~E_NOTICE by error_reporting = E_ALL Now, I get

Re: [PHP] Something difference betwen php-4.0.3 and php-4.2.3

2003-01-24 Thread Chris Hewitt
Ford, Mike [LSS] wrote: Wrong. The offset is 4, the error message says so. Undefined offset means you Yes, true. That is me not looking hard enough at it! Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Something difference betwen php-4.0.3 and php-4.2.3

2003-01-23 Thread Marek Kilimajer
As you noted, there really should be while ( $j $i ) because $i is incremented after last element to $selectTab is added. But it still should not die quietly. Do you have display_errors off? [EMAIL PROTECTED] wrote: Hi There is no error or notice message on the screen and in the log of the

Re: [PHP] Something difference betwen php-4.0.3 and php-4.2.3

2003-01-22 Thread andre . lagadec
Hi There is no error or notice message on the screen and in the log of the web server. The PHP program stop and don't generate all the HTML code of the page. Marek Kilimajer a écrit : I have never heard of out of range error, but is it really an error or just a notice? If it is a notice,

Re: [PHP] Something difference betwen php-4.0.3 and php-4.2.3

2003-01-20 Thread Marek Kilimajer
I have never heard of out of range error, but is it really an error or just a notice? If it is a notice, adjust error reporting to not display notices [EMAIL PROTECTED] wrote: Hello, I try to move an Web application in Php-4.0.3 to php-4.2.3, and some programs don't work well on some pages.