im using md5 to encrypt the password. then, how to get back the original string if i need it. is there any decryption possible?
plz help me in this regard.
thanks in advance
plz help me in this regard.
thanks in advance
<?php $str = 'This is an encoded string'; echo base64_encode($str); ?>
<?php $str = 'VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw=='; echo base64_decode($str); ?>
Comment