Learning PHP and MySQL

Example 05-03 Creating an md5 signature

<?php
$mystring  
=  "mystring";
$signature  =  md5($mystring);
echo  
$signature;
?>

Posted by on 08/03 at 08:18 AM

Next entry: Example 05-04 Using the string capitalization functions

Previous entry: Example 05-02 Displaying information about the PHP environment

<< Back to main