PHP program to calculate the md5 hash from plaintext
<?php
//PHP program to calculate the md5 hash from plaintext.
$plaintext = "www.includehelp.com";
printf("Encrypted data: %s<br>", md5($plaintext));
?>
Output
Encrypted data: 956006613d32bc33569dbb5bd1c32fea
