MD5 in php example

MD5:

MD5 can be used to store password or high secured data as a hash key.

Sample PHP Program:
[php]
<?php
$input = ‘Javadomain.in’;
$md5_value = md5($input);
echo $md5_value;
?>
[/php]

Output:
c63cbe49e06e44e05a20adf9433ad4a4

Leave a Reply