Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <title> Md5 Generator </title>
- <center> Enter Password </center> <br>
- <center><form method="POST">
- <input type="text" name="md5">
- <input type="submit" value="Generator"></center>
- <?
- $pass = $_POST['md5'];
- $md5 = md5($pass);
- echo "<br>";
- echo "<center>";
- print "Md5 Password : ";
- echo "<font color='red'> $md5 </font>";
- echo "</center><br>";
- ?>
- <center> Coded By Ferral </center>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement