retweets_of_me($count, $since_id, $max_id); echo '
'; include_once('inc/sentForm.php'); $html = ' '; $html .='
'; $empty = count($retweets) == 0? true: false; if ($empty) { $html .= "
No retweet to display.
"; } else if ($t->http_code == 429) { $html .= "
API quota is used out, please wait for a moment before next refresh.
"; } else { $html .= '
    '; $firstid = false; $lastid = false; foreach($retweets as $retweet){ if (!$firstid) $firstid = $retweet->id_str; $lastid = $retweet->id_str; $html .= format_retweet_of_me($retweet); } $lastid = bcsub($lastid, "1"); $html .= '
"; } echo $html; include_once('inc/sidebar.php'); include_once('inc/footer.php'); ?>