Skip to content
Home » encode

encode

Encode and decode URL

In PHP you can send values by encoding and decoding the URL by using this encoding and decoding method. {code type=PHP}echo base64_encode(‘I am encoded PHP’);{/code} You will get and output something like this. {code type=PHP}VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw=={/code} This can be decoded by… Read More »Encode and decode URL