MrPaan

Encrypt

Nov 20th, 2013
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.77 KB | None | 0 0
  1. <?php
  2.  
  3. function encryptgila($paan)
  4.  
  5. {
  6.  
  7. $huruf=array("a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","1","2","3","4","5","6","7","8","9","0");
  8.  
  9. $gila=array("$#%","432#","ewrwr#@4","][{{","?>","sdf","adasd","3242324","@#@#4ssdf","asdad#@432","234234s#$$#","24234","24##","4535dfgdg","35##fdsf","werw4w","sfsdf#@$","34534dfs","wr5343","wrwe3534","345345asd","234sdfsf","werw3453","sfsdfs43534","ewrweerwsfsdf","345345sdf","14322","24234","234sdfs","234234","325435","sdf34453","sdfsdf43534","sdfsdf4535","35345sdfsdf","34534sfsdf");
  10.  
  11. $encrypt = str_replace($huruf, $gila, $paan); //terbalikkan gila dan huruf for decrypt
  12.  
  13. echo "<b>$encrypt</b>";
  14.  
  15. }
  16.  
  17. ?>
  18.  
  19.  
  20. //lain2
  21. include "encrypt.php";
  22. encryptgila($_POST[isi]);
Advertisement
Add Comment
Please, Sign In to add comment