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 to find a length of a string in php?

1 Answers  


What are the string functions in php?

0 Answers  


Why do we use inheritance in php?

0 Answers  


What is the method to register a variable into a session?

0 Answers  


How do you call a constructor for a parent class?

0 Answers  






what type of images that the PHP version supports

4 Answers  


What is PECL?

0 Answers  


Why overriding is called runtime polymorphism?

0 Answers  


What is the use of strip_tags() method?

0 Answers  


When a conditional statement is ended with an endif?

0 Answers  


What is php session and how it works?

0 Answers  


How many ways we can pass the variable through the navigation between the pages?

7 Answers  


Categories