http://www.youtube.com/watch?v=rrCIbfI8uB0
Description:
Code:Code: http://elitetactics.sytes.net/codes/index.html
Test: http://elitetactics.sytes.net/test2.php
A little tutorial to make a md5 hash generator.
%php
%html
%md5
Enjoy.PHP Code:<form action='test2.php?' name='gen' method='post'>
Text To Hash <input type='text' name='pass'><br />
<input type='submit' value='Go!'>
</form>
<?php
// Start MD5 Hash Generator \\
$pass2=$_POST['pass'];
$pass=md5($pass2);
echo $pass;
// End Hash Generator \\
?>



Reply With Quote![[PHP] How to make a md5 hash generator](http://ragezone.com/hyper728.png)


