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
Which is the latest version of php?
What does the function get_magic_quotes_gpc() means?
Is php developer in demand?
Suppose your zend engine supports the mode ?> Then how can you configure your php zend engine to support Mode ?
What is php and features of php?
How do you clear environment variables?
Tell me how to execute an sql query? How to fetch its result?
What is the function file_get_contents() useful for?
Differentiate between require and include?
What is isset in php form?
Which function will you use to create an array?
Do csrf tokens expire?
What is == and === in php?
Write a program to display table of a number using php?
What is composer json?