Advertisement
Sha6h

MD5 Encryption

Apr 26th, 2015
394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.76 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>MD5 Encryption</title>
  4.         <style>
  5.         table {
  6.         border-collapse:collapse;
  7.         }
  8.         table,th, td
  9.         {
  10.         border: 1px solid black;
  11.         }
  12.         input {
  13.         border: 1px solid black;
  14.         }
  15.         </style>
  16.     </head>
  17.    
  18. <body bgcolor="#000000">
  19.  
  20.  
  21.  
  22. <div align="center">
  23.     <pre id="bigtext" onclick="this.select();"><font color="#FF0000">
  24. ##     ## ########  ########    ######## ##    ##  ######  ########  ##    ## ########  ######## ####  #######  ##    ##
  25. ###   ### ##     ## ##          ##       ###   ## ##    ## ##     ##  ##  ##  ##     ##    ##     ##  ##     ## ###   ##
  26. #### #### ##     ## ##          ##       ####  ## ##       ##     ##   ####   ##     ##    ##     ##  ##     ## ####  ##
  27. ## ### ## ##     ## #######     ######   ## ## ## ##       ########     ##    ########     ##     ##  ##     ## ## ## ##
  28. ##     ## ##     ##       ##    ##       ##  #### ##       ##   ##      ##    ##           ##     ##  ##     ## ##  ####
  29. ##     ## ##     ## ##    ##    ##       ##   ### ##    ## ##    ##     ##    ##           ##     ##  ##     ## ##   ###
  30. ##     ## ########   ######     ######## ##    ##  ######  ##     ##    ##    ##           ##    ####  #######  ##    ##
  31.         </font></pre>
  32.  
  33. <div align="center">
  34.     <table border="0" width="100%" height="100" cellpadding="0">
  35.         <tr>
  36.             <td>
  37.             <form method="POST" action="#">
  38.                 <p align="center">
  39.                 <input type="text" name="code" size="41">
  40.                 <input type="submit" value="MD5" name="submit">
  41.                 </p>
  42.                
  43. <?php
  44.     if($_POST['submit']){
  45.     $Ex =$_POST['code'];
  46. ?>
  47.                 <p align="center"><b><font color="#008000" face="Trebuchet MS" size="2"><?php  echo md5($Ex); } ?></font></b></p>
  48.             </form>
  49.         </tr>
  50.     </table>
  51. </div>
  52.  
  53.  
  54.  
  55. <body>
  56. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement