[PHP] plus sign has changed to space after POST

2002-11-19 Thread bhkwan
After upgrade to 4.2.3, plus "+" sign has changed to space after POST. I have checked the mailing list but can't find any help to turn this off forever! is this a bug in PHP? thanks

RE: [PHP] plus sign has changed to space after POST

2002-11-19 Thread bhkwan
I have tried this but the problem is it change the other special character as well. For example, $ to %24, etc. If people pass a string like "abc+def$ghi", I want to save the exact string to the database rather than "abc+def%24ghi". I can't do a translation of %24 to $ before saving the stri

RE: [PHP] plus sign has changed to space after POST

2002-11-19 Thread bhkwan
might be my php code has problem the following code fragment will keep "+" to "+" but "$" to "%24" "John W. Holmes" <[EMAIL PROTECTED]> 11/19/2002 04:12 PM Please respond to holmes072000 To: <[EMAIL PROTECTED]> cc: <[EMAIL PROTECTED]> Subject:

RE: [PHP] plus sign has changed to space after POST

2002-11-19 Thread bhkwan
This is the problem that I describe earlier in the thread. I can't save %24 in the database but "$". ie a user send a string "abc+def$ghi", I need to get the exact string back but not "abc+def%24ghi". so is this a bug in PHP?? "John W. Holmes" <[EMAIL PROTECTED]> 11/19/2002 04:46 PM Pl

Re: [PHP] plus sign has changed to space after POST

2002-11-21 Thread bhkwan
finally, I have this issue solved. I have recompiled PHP "without" this --enable-mbstr-enc-trans For those who said they have no problem with the "+" sign, tried to compile your PHP with the option above and tried it out!!! ;) I know this is not a PHP bug but I am curious how people handle th