What is the difference between urlencode and urldecode ?
Answer Posted / laxmikant
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.
| Is This Answer Correct ? | 19 Yes | 1 No |
Post New Answer View All Answers
Differences between get, post and request methods ?
How is it possible to parse a configuration file?
How would you declare a function that receives one parameter name hello?
How to get the ip address of the client?
What are the design patterns in php?
Tell me how can we display information of a variable and readable by human with php?
Is json a string php?
How to set session.gc_divisor properly?
What is file upload?
What is difference Between PHP 5 and 7?
How to insert a line break in php string?
What function do we use to find length of string, and length of array?
How to insert an new array element in array?
How to take a substring from a given string?
Is age interval or ordinal data?