What is meant by urlencode and urldecode?

by Geethalakshmi 2012-06-29 13:54:49

What is meant by urlencode and urldecode?


urlencode() returns the URL encoded version of the given string. URL coding converts special characters into % signs followed by two hex digits. For example: urlencode("10.00%") will return "10%2E00%25". URL encoded strings are safe to be used as part of URLs.
urldecode() returns the URL decoded version of the given string.
951
like
0
dislike
0
mail
flag

You must LOGIN to add comments