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
Write a program in php to print a table of a number?
What is a comment in php?
Which cryptographic functions in php returns the longest hash value?
Tell us what is the difference between session_unregister() and session_unset()?
How can we display information of a variable and readable by a human with php?
What would occur if a fatal error was thrown in your php program?
What is the use of $_server and $_env?
What does mvc stand for and what does each component do?
Is key exist in array php?
What is the timeout period on session values?
What is "echo" in php?
Which software is best for php?
What is printf in php?
Does csrf token change?
Why die is used in php?