top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How urlencode and urldecode can be used in PHP?

+1 vote
302 views
How urlencode and urldecode can be used in PHP?
posted Dec 14, 2017 by Jdk

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Hi..

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.

urlencode (string $str )

Urldecode can be used to decode a string. Decodes any %## encoding in the given string (Inserted by urlencode)

urldecode (string $str )
answer Dec 19, 2019 by Siddhi Patel
...