Home »

What is meant by urlencode and urldecode?

Question ListCategory: PHPWhat is meant by urlencode and urldecode?
ethanbrown author asked 9 years ago
1 Answers
shah_kajal184 author answered 8 years ago

URLencode returns a string in which all non-alphanumeric characters except -_. have been replaced with a percent (%) sign followed by two hex digits and spaces encoded as plus (+) signs.
It is encoded the same way that the posted data from a WWW formis encoded, that is the same way as in application/x-www-form-urlencoded media type. urldecode decodes any %## encoding in the given string.

Please login or Register to Submit Answer