- Joined
- Jul 6, 2008
- Messages
- 173
- Reaction score
- 2
http://www.youtube.com/watch?v=rrCIbfI8uB0
Description:
Code:
Enjoy.
Description:
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
Code:
PHP:
<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 \\
?>
Enjoy.
Last edited: