Re: [PHP] Problem with rawurlencode and euro sign.

2006-07-27 Thread Satyam
Subject: Re: [PHP] Problem with rawurlencode and euro sign. likely to be something to do with the fact that the euro character does not exist in ISO8859-1. maybe this page helps: http://www.gar.no/html/euro.htm Mathijs wrote: Hello there, I have a problem with rawurlencode(). I want to have the euro

Re: [PHP] Problem with rawurlencode and euro sign.

2006-07-27 Thread Jochem Maas
likely to be something to do with the fact that the euro character does not exist in ISO8859-1. maybe this page helps: http://www.gar.no/html/euro.htm Mathijs wrote: > Hello there, > > I have a problem with rawurlencode(). > I want to have the euro sign € to be sent by post. > To do this

Re: [PHP] Problem with rawurlencode and euro sign.

2006-07-27 Thread Mathijs van Veluw
Thx for that website :). It helped. I Think the server i am sending to is on windows, and i changed the encoding to windows-1252 and that has it on %80. Going to contact the company to ask this :). Thx for the link. Jochem Maas wrote: likely to be something to do with the fact that the euro

[PHP] Problem with rawurlencode and euro sign.

2006-07-27 Thread Mathijs
Hello there, I have a problem with rawurlencode(). I want to have the euro sign € to be sent by post. To do this, first rawurlencode() encodes all the chars. But for some reason rawurlencode encodes it to %3F or %A4. Which i think is logical becouse that is the right position in the charset. Bu