andripzf

[PHP] Simple Encrypt Md5 Hash

Jul 19th, 2013
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. <form method="POST">
  2. <input type="text" name="anu"><input type="submit" name="ok" value="MD5"></form>
  3. <?php
  4. if(isset($_POST[‘ok’])) {
  5. echo md5(trim($_POST[‘anu’]));
  6. }
  7. ?>
Advertisement
Add Comment
Please, Sign In to add comment