Click to See Complete Forum and Search --> : url encoding/recoding


webtekie
07-28-2003, 04:30 PM
Hello,

When I pass variable thru url encoding they are being encoded, so if I have 03012-MALLORY&CHURCH I would get 03012-MALLORY %26 CHURCH. Is there a function that I can use to decode the last one into its "human-readable' state?

thanks,
Alex

pyro
07-28-2003, 04:32 PM
Try unescape(varname);

webtekie
07-28-2003, 04:36 PM
yup, tried it...works. thanks!

pyro
07-28-2003, 04:43 PM
You're welcome... :)