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
What are sql injections, how do you prevent them and what are the best practices?
Why does sql injection happen?
What is php static function?
Differences between get, post and request methods ?
How to take a substring from a given string in php?
Write syntax to open a file in php?
Write logic to print Floyd's triangle in PHP?
What is sticky form in php?
What is in a cookie?
What is the meaning of symbol '$' in jquery?
What are the main error types in php?
How do http requests work?
Does browser understand php?
What is the meaning of a persistent cookie?
What is the use of ajax in php?