In cakephp, I would like to use an url parameter which might contain some special chars like é or è.
When I print $this->params['url'] for this url for example: http://dev.family/registration?fname=kr%E9s
I get:
Array ( [url] => registration [fname] => kr�s )
So the é becomes a question mark.
I tried urldecode, but I doesn't help. I guess this has something to do with UTF-8 encoding, but I don't know where to search.
Any suggestions?
Krikke