InterviewSolution
| 1. |
What Is Meant By Urlencode And Urldecode? |
|
Answer» 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. 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. |
|