[PHP] Re: [PHP-DEV] WEIRD, WEIRD problem with upgrade to 4.0.5

2001-05-11 Thread Vlad Krupin
As I said before, it is most likely due to the newlines that PHP can not recognize. You do not see the newlines, so as far as you are concerned, the code is totally valid. But this is not what PHP sees - PHP sees a long string rather than multiple lines in your code because it treats a single

[PHP] RE: [PHP-DEV] RE: [PHP] RE: [PHP-DEV] WEIRD, WEIRD problem with upgrade to 4.0.5

2001-05-11 Thread Maxim Maletsky
Sent: Friday, May 11, 2001 4:15 PM To: [EMAIL PROTECTED]; Maxim Maletsky; 'Vlad Krupin' Cc: 'PHP General List. (E-mail)'; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP-DEV] RE: [PHP] RE: [PHP-DEV] WEIRD, WEIRD problem with upgrade to 4.0.5 Can you try the latest snapsh

[PHP] Re: [PHP-DEV] RE: [PHP] RE: [PHP-DEV] WEIRD, WEIRD problem with upgrade to 4.0.5

2001-05-10 Thread Andi Gutmans
Friday, May 11, 2001 11:25 AM >To: '[EMAIL PROTECTED]'; 'Vlad Krupin' >Cc: 'PHP General List. (E-mail)'; [EMAIL PROTECTED]; >[EMAIL PROTECTED] >Subject: RE: [PHP] RE: [PHP-DEV] WEIRD, WEIRD problem with upgrade to >4.0.5 > > >nope, I won't

RE: [PHP] RE: [PHP-DEV] WEIRD, WEIRD problem with upgrade to 4.0.5

2001-05-10 Thread Jude
y I noticed the problem so late = 20 minutes of downtime yesterday) Cheers, Maxim Maletsky -Original Message- From: Jude [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 06, 2001 6:53 PM To: Maxim Maletsky; 'Vlad Krupin' Cc: 'PHP General List. (E-mail)'; [EMAIL PROTECTED]; [EM

RE: [PHP] RE: [PHP-DEV] WEIRD, WEIRD problem with upgrade to 4.0.5

2001-05-10 Thread Maxim Maletsky
, Maxim Maletsky -Original Message- From: Jude [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 06, 2001 6:53 PM To: Maxim Maletsky; 'Vlad Krupin' Cc: 'PHP General List. (E-mail)'; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] RE: [PHP-DEV] WEIRD, WEIRD problem with u

RE: [PHP] RE: [PHP-DEV] WEIRD, WEIRD problem with upgrade to 4.0.5

2001-05-10 Thread Jude
[EMAIL PROTECTED] Subject: RE: [PHP] RE: [PHP-DEV] WEIRD, WEIRD problem with upgrade to 4.0.5 But why? 1. on 4.0.1pl2 it worked. 2. I noticed it even on a function(); // comment as well. I will restart experimenting later again. I think I should upgrade my apache first, then recompile PHP, and try

RE: [PHP] RE: [PHP-DEV] WEIRD, WEIRD problem with upgrade to 4.0.5

2001-05-10 Thread Maxim Maletsky
[EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] RE: [PHP-DEV] WEIRD, WEIRD problem with upgrade to 4.0.5 hi why not try to enclose the parameters to () or try this? "); ?> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additi

RE: [PHP] RE: [PHP-DEV] WEIRD, WEIRD problem with upgrade to 4.0.5

2001-05-10 Thread Jude
hi why not try to enclose the parameters to () or try this? "); ?> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] RE: [PHP-DEV] WEIRD, WEIRD problem with upgrade to 4.0.5

2001-05-10 Thread Maxim Maletsky
well, I don't think that was the reason... because '; ?> will print me: // please no... echo ''; any further ideas? Maxim Maletsky -Original Message- From: Vlad Krupin [mailto:[EMAIL PROTECTED]] Sent: Friday, May 11, 2001 7:12 AM To: Maxim Maletsky Cc: 'PHP General List. (E-mail

[PHP] Re: [PHP-DEV] WEIRD, WEIRD problem with upgrade to 4.0.5

2001-05-10 Thread Vlad Krupin
That's most likely because you have newlines that PHP does not understand (it should in 4.0.6). In particular, the newline just before the // comment that got printed out where it should not is probably mac-style '\r' instead of unix-style '\n' or dos-style '\r\n'. Fix those newlines and every