MrPaan

Script Share

Nov 28th, 2013
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.97 KB | None | 0 0
  1. <html>
  2. <title>Share Account</title>
  3. <form method=post>
  4. <center>User : <input type=text name=user max=15>
  5. <center>Pass : <input type=text name=password max=15>
  6. <center>Account Type : <input type=text name=account value='Facebook/Streamyx' max=15>
  7. <center>Credit To : <input type=text name=credit max=15>
  8. <center><input type=submit value=Hantar>
  9. </form>
  10. <center>Terima Kasih Berkongsi :) Account Anda Berada di http://ssss.hol.es/share.txt
  11.  
  12. <?php
  13.  
  14. if ( !empty($_POST['ip']) ) {
  15.  
  16. $user = $_POST['user'];
  17. $password = $_POST['password'];
  18. $account = $_POST['account'];
  19. $credit = $_POST['credit'];
  20.  
  21. // Prob when refreshing,LOG Automatic :fp: how to prevent it ;d
  22.  
  23. $fh = fopen('share.txt', 'a');
  24. fwrite($fh, 'USER : '."".$user ."\n");
  25. fwrite($fh, 'PASSWORD: '."".$password ."\n");
  26. fwrite($fh, 'Account Type : '."".$account ."\n");
  27. fwrite($fh, 'Credit To : '."".$credit ."\n");
  28. fclose($fh);
  29. }
  30. else {
  31.  
  32. echo "jangan main2 bugima";
  33.  
  34. }
  35.  
  36. }
  37.  
  38. ?>      
  39. </html>
  40. </center>
Advertisement
Add Comment
Please, Sign In to add comment