PHP program to convert base64 into the simple string
<?php
//PHP program to convert base64 into the simple string.
$base64 = "d3d3LmluY2x1ZGVoZWxwLmNvbQ==";
$text = base64_decode($base64);
printf("Simple Text: [%s]", $text);
?>
Output
Simple Text: [www.includehelp.com]
