Does Zend Framework hijack the raw $_GET
and remove chars? I can't figure out whats going on with a script I am writing.
right now I am passing a variable "email" via a param in the url. Which its working, however. Its stripping out a character and leaving a space.
trying it like $_GET['email']
or like $params = $this->getRequest()->getParams(); $params['email']
on an email string that has a +
in it the +
gets removed and is replaced with a space. Yet I'm not applying anything that would cause that, that I am aware of anywhere.
So, does anyone else know what the issue may be?