What is the difference between urlencode and urldecode ?

Answers were Sorted based on User's Feedback



What is the difference between urlencode and urldecode ?..

Answer / 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

What is the difference between urlencode and urldecode ?..

Answer / prasadkonnur

urencode function is convenient when encoding a string to
be used in a query part of a URL, as a convenient way to
pass variables to the next page.

urldecode decodes the encoded string.

$_GET and $_REQUEST are all ready in decoded form

Is This Answer Correct ?    15 Yes 0 No

What is the difference between urlencode and urldecode ?..

Answer / ks.tarun

urlencode: encode the Url Query string in a predefined ways.
urldecode: decode the url query string into values as was
passes in the url.

Is This Answer Correct ?    6 Yes 0 No

Post New Answer

More PHP Interview Questions

How can we automatically escape incoming data?

0 Answers  


How do I escape in php?

0 Answers  


What are the different filter functions used to filter a variable?

0 Answers  


Do I need to install php after xampp?

0 Answers  


Extract url from this string? It should be flexible for all strings, not for this string only. "yahoo.comyahoo.co.inhotmail.org"

1 Answers   A1 Technology,


What does a delimiter do in mysql?

0 Answers  


WHat is the diff. between PHP4 and PHP5?

6 Answers   Clarion Technologies, IBM, OmniNet, Sparkton Infotech,


What types images that php supports?

1 Answers  


Explain what is meant by pear in php?

0 Answers  


How I can control asset documents without GR/IR?

0 Answers   i2U Systems, Industrial Hand Protection, Mutha Technosoft,


Who is the father of PHP and explain the changes in PHP versions?

2 Answers   Rushmore Consultancy,


How can you get, the total size of a certain directory?

1 Answers  


Categories