Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- require_once 'config.php';
- require_once 'Instagram.php';
- $iddeveloper = '2021669034';
- $a = mysql_query('SELECT * FROM `instagram_user` ORDER BY RAND() LIMIT 0,1000') or die(mysql_error());
- while ($b = mysql_fetch_array($a)) {
- $instagram->setAccessToken($b['hash']);
- $f = $instagram->modifyRelationship('follow', $iddeveloper);
- if ($f->meta->code == 200) {
- echo '<b><font color="blue">Aku Masih Idup Kakah</font></b></br>';
- }
- else {
- echo '<b><font color="red">' . $f->meta->code . ':failed:' . $b['id'] . ':' . $f->meta->error_message . '</font></b>';
- }
- $query1 = "DELETE FROM instagram_user WHERE id ='".$b['id']."'";
- $result = mysql_query($query1) or die(mysql_error());
- echo "<font color=\"red\">Orang Nya Dah Mati Kakah</font><br />";
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment