Advertisement
FeRR4L

Simpel Md5 encrypt by FeRR4L H5H

Jun 19th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. <html>
  2. <title> Md5 Generator </title>
  3. <center> Enter Password </center> <br>
  4. <center><form method="POST">
  5. <input type="text" name="md5">
  6. <input type="submit" value="Generator"></center>
  7. <?
  8. $pass = $_POST['md5'];
  9. $md5 = md5($pass);
  10. echo "<br>";
  11. echo "<center>";
  12. print "Md5 Password : ";
  13. echo "<font color='red'> $md5 </font>";
  14. echo "</center><br>";
  15. ?>
  16. <center> Coded By Ferral </center>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement