Possible Duplicate:
Passing base64 encoded strings in URL
I am working on creating a url that will be sent to user. User then clicks the url and this URL tells me who the user is.
So all the data I have added to this link using base64 encode. However when user clicks the link he gets redirected to 404 page since encoded url has '/' in it and zend framework router does not find any routes for it.
Any way I can suppress the '/'? I tried htmlentities
but it did not work.