RE: [PHP] BUG - Someone else please verify B4 I file

2001-04-05 Thread Krznaric Michael
O.k. I understand that, now why would HTTP_POST_VARS be set if no data is posted? Is this desired operation? Mike -Original Message- From: Jeff Carnahan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 04, 2001 2:18 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] BUG - Someone else please

Re: [PHP] BUG - Someone else please verify B4 I file

2001-04-05 Thread Plutarck
:18 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] BUG - Someone else please verify B4 I file In article 81A3043681E6824EBE672F7421C30E7E2A19A7 @SRVTORONTO.RAND.COM, [EMAIL PROTECTED] says... }if (isset ($HTTP_POST_VARS)){ } echo "Http Post Vars Set"; Remember, just because

Re: [PHP] BUG - Someone else please verify B4 I file

2001-04-04 Thread Data Driven Design
I've noticed that and had to rewrite several scripts when hosts upgraded from PHP3 to PHP4. $HTTP_POST_VARS is considered set even when it is empty. Data Driven Design P.O. Box 1084 Holly Hill, FL 32125-1084 http://www.datadrivendesign.com http://www.rossidesigns.net - Original Message

Re: [PHP] BUG - Someone else please verify B4 I file

2001-04-04 Thread Jeff Carnahan
In article 81A3043681E6824EBE672F7421C30E7E2A19A7 @SRVTORONTO.RAND.COM, [EMAIL PROTECTED] says... }if (isset ($HTTP_POST_VARS)){ } echo "Http Post Vars Set"; Remember, just because a variable is "set", it doesn't imply that the variable has any data stored in it. In this case, while the

Re: [PHP] BUG - Someone else please verify B4 I file

2001-04-04 Thread Andrew Rush
on 4/4/01 5:14 PM, Data Driven Design at [EMAIL PROTECTED] wrote: I've noticed that and had to rewrite several scripts when hosts upgraded from PHP3 to PHP4. $HTTP_POST_VARS is considered set even when it is empty. i have also noticed this. we run 4.0.3pl1 here. have a great day andy --

Re: [PHP] BUG - Someone else please verify B4 I file

2001-04-04 Thread Steve Werby
"Data Driven Design" [EMAIL PROTECTED] wrote: I've noticed that and had to rewrite several scripts when hosts upgraded from PHP3 to PHP4. $HTTP_POST_VARS is considered set even when it is empty. For those that can't guess the solution to this problem I suspect this will do the trick: !