WMPRO, WMMINI FW >= 1.893 WMMEGA FW >= 2.0
Return the base64-encoded version of a string
$data: A string to encode
MIME Base64 encoded string (or int 0 for error)
<? $data="This will be an encoded string"; print(base64_encode($data)); ?>
The above example will output:
VGhpcyB3aWxsIGJlIGFuIGVuY29kZWQgc3RyaW5n
base64_decode() - Decode a base64-encoded string