Hi friends,
I want to know that What is urlencode and urldecode?
Thanks
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted Dec 13, 2011, 10:31 PM
Urlencode can be used to encode a string that can be used in a url. It encodes the same way posted data from web page is encoded. It returns the encoded string.
Syntax: urlencode (string $str )
Urldecode can be used to decode a string. Decodes any %## encoding in the given string (Inserted by urlencode)
Syntax: urldecode (string $str )
Please refer the below link
http://www.php.net/manual/en/function.urlencode.php
http://php.net/manual/en/function.urldecode.php
Thanks