Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Pengambilan Data
- $a = mysql_query("select * from twitter_access_tokens where order by rand() limit ".$jumlah."");
- $i=0;
- while ($b = mysql_fetch_array($a)) {
- $oauth_token[$i] = $b["oauth_token"];
- $oauth_secret[$i] = $b["oauth_token_secret"];
- $i++; }
- // -------------------------
- // Favorit Status
- for ($i=0;$i<$jumlah;$i++) {
- $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $oauth_token[$i], $oauth_secret[$i]);
- $connection->post('favorites/create'.$favid ); }
- flush();
- // ----------------------------
- echo '<center><font size="+1"><h3>BERHASIL MENAMBAHKAN FAVORIT!</h3></font></center>';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement