top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is meant by urlencode and urldecode?

0 votes
235 views
What is meant by urlencode and urldecode?
posted Jun 16, 2014 by Rajneesh

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

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.

answer Jun 17, 2014 by Vrije Mani Upadhyay
...