InterviewSolution
Saved Bookmarks
| 1. |
What Is Urlencode() And Urldecode() ? |
|
Answer» URLENCODE() converts special characters into characters that are safe to be USED in URL’s. Mostly they are converted into % signs along with 2 HEX DIGITS. For ex: urlencode(“20:00%) is converted into “25%2E00%25?” urldecode() does the opposite and returns the decoded string.. urlencode() converts special characters into characters that are safe to be used in URL’s. Mostly they are converted into % signs along with 2 hex digits. For ex: urlencode(“20:00%) is converted into “25%2E00%25?” urldecode() does the opposite and returns the decoded string.. |
|