nemat0da

[PHP] MD5 Encoder

Dec 14th, 2016
380
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <form name="data" method="post">
  2. <textarea name="res7ock" cols='50' rows='12'placeholder="Input your text"></textarea><br><br>
  3. <input type="submit" name="res" value="GASCOK">
  4. <input type="reset" value="CANCEL">
  5.  
  6. <?php
  7. $ya=$_POST['res'];
  8. $co=$_POST['res7ock'];
  9. if($ya){
  10. echo"<br><br><textarea cols='50' rows='12'>";
  11. echo md5($co);
  12. echo"</textarea>";
  13. }
  14. ?>
Add Comment
Please, Sign In to add comment