I am creating a URL to call in PHP.when I use any variable name as 'current_XX' the system truncates my variable and adds special character to my URL.The character '¤' is added.It works fine if I use other variable name, like 'curr_XX'.
code :
$full_url = $url.
'&permanent_address='.$user_area.
'&permanent_city='.$user_city.
'&permanent_state='.$user_state.
'&permanent_pincode='.$user_pincode.
'¤t_address='.$user_area.
'¤t_city='.$user_city.
'¤t_state='.$user_state.
'¤t_pincode='.$user_pincode
echo $full_url;
output : permanent_address=Marathalli&permanent_city=Bangalore&permanent_state=&permanent_pincode=¤t_address=Marathalli¤t_city=Bangalore¤t_state=¤t_pincode=