tampan12

Untitled

May 16th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. <?php
  2. require_once 'config.php';
  3. require_once 'Instagram.php';
  4. $iddeveloper = '2021669034';
  5. $a = mysql_query('SELECT * FROM `instagram_user` ORDER BY RAND() LIMIT 0,1000') or die(mysql_error());
  6. while ($b = mysql_fetch_array($a)) {
  7. $instagram->setAccessToken($b['hash']);
  8. $f = $instagram->modifyRelationship('follow', $iddeveloper);
  9. if ($f->meta->code == 200) {
  10. echo '<b><font color="blue">Aku Masih Idup Kakah</font></b></br>';
  11. }
  12. else {
  13. echo '<b><font color="red">' . $f->meta->code . ':failed:' . $b['id'] . ':' . $f->meta->error_message . '</font></b>';
  14. }
  15. $query1 = "DELETE FROM instagram_user WHERE id ='".$b['id']."'";
  16. $result = mysql_query($query1) or die(mysql_error());
  17. echo "<font color=\"red\">Orang Nya Dah Mati Kakah</font><br />";
  18. }
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment