Generate MD5 Hash using PHP

md5 function

<?php

$text = 'Hello';
$digest = md5($text);

echo $digest;

Leave a Comment

Cancel reply

Your email address will not be published.