passing & in url variable withe the help of urlencode
- by pradeep
I have done urlencode of the variable before passing to the url
http://abc.com/Restaurants?aliasF%26B
but when i try to print like
in the page
$alias = rawurldecode($_GET['alias']);
echo $alias;
it prints only F.how to solve this??