Use md5 function to encrypt text : md5 : Login Authentication PHP Source Code


PHP Source Code » Login Authentication » md5 »

 

Use md5 function to encrypt text



<?php
   $val = "secret";
   echo "Pre-hash string: $val <br />";
   $hash_val = md5 ($val);
   echo "Hashed outcome: $hash_val";
?>


           
       



HTML code for linking to this page:

    PHP Function Reference -> Users Code Examples / Notes - > md5:
  • md5_file
  • md5
Follow Navioo On Twitter

PHP Source Code

 Navioo Login Authentication
» md5