Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6144117
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T18:36:29+00:00 2026-05-23T18:36:29+00:00

I’m building an event based on the current tweet count in php that holds

  • 0

I’m building an event based on the current tweet count in php that holds a particular hashtag.
On the main page I have a counter that says: “tweets so far: xxx”. I used this php script:

global $total, $hashtag;
$hashtag = '#somehashtag';
$total = 0;
function getTweets($hash_tag, $page) {
   global $total, $hashtag;
   $url = 'http://search.twitter.com/search.json?q='.urlencode($hash_tag).'&';
   $url .= 'page='.$page;    
   $ch = curl_init($url);
   curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
   $json = curl_exec ($ch);
   curl_close ($ch);

   $json_decode = json_decode($json);        
   $total += count($json_decode->results);    
   if($json_decode->next_page){
      $temp = explode("&",$json_decode->next_page);        
      $p = explode("=",$temp[0]);                
      getTweets($hashtag,$p[1]);
   }        
}   
getTweets($hashtag,1);

Next, I save the result in my database:

$updateCount = "UPDATE tweets SET currentcount = '$total'";   
$doQuery = mysql_query($updateCount, $con) or die(mysql_error());

This script runs by a cronjob that fires the script every 2 minutes.
It works fine. But this script returns only 1500 tweets since twitter doesn’t allow any more.

How can I still keep track of the current tweet count? I know there is no way of going above the max tweets of the twitter api. But maybe through time or database checks?
Thanks in advance!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T18:36:30+00:00Added an answer on May 23, 2026 at 6:36 pm

    The way I would do it:

    • save the last tweets id you got in the database with the current count.
    • on the next run, get the tweets from that tweet on, add the number of tweets to the count and update the last tweet entry with the new last tweet.
    • Lather, rinse, repeat.

    One problem with the approach: if there are more than 1500 tweets in less than 2 minutes, some will not be counted.

    To get the tweets from your last tweet on, you can use the since_id parameter:

    since_id: returns tweets with status ids greater than the given id.

    Twitter Search API

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I want to count how many characters a certain string has in PHP, but
I would like to count the length of a string with PHP. The string
this is what i have right now Drawing an RSS feed into the php,
I have a French site that I want to parse, but am running into
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I'm trying to create an if statement in PHP that prevents a single post
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.