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

What is meant by urlencode and urldocode?

2 Answers  


How many ways there are to fetch the data from the Database?

2 Answers   Tops Technologies,


How do you remove duplicates from an array?

0 Answers  


can anyone explain about stored procedure,Triggers and transaction in php?

2 Answers  


Why did you choose this particular career path?

0 Answers  






What is the php function that removes the first element of the array and returns it?

0 Answers  


Do while loops?

0 Answers  


What is the use of is_array() and in_array()?

0 Answers  


What is the use of offset in mysql?

0 Answers  


What are the features of php?

0 Answers  


How does the identity operator === compare two values?

0 Answers  


What is the difference between using copy() and move() function in PHP file uploading?

5 Answers  


Categories