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
Please respond to holmes072000
To: <[EMAIL PROTECTED]>
cc: <[EMAIL PROTECTED]>
Subject: RE: [PHP] plus sign has changed to space after
POST
> might be my php code has problem the following code fragment will keep
"+"
> to "+" but "$" to "%24"
That's what urlencode() is supposed to do.
---John Holmes...