Mega Code Archive

 
Categories / Php / Functions
 

Md5 php

<?php    $val = "secret";    $hash_val = md5 ($val);    echo $hash_val; ?>