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 792829
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T22:03:15+00:00 2026-05-14T22:03:15+00:00

is there any jQuery plugin to create something like the live feed from the

  • 0

is there any jQuery plugin to create something like the live feed from the Twitter Main Page , using PHP, which is getting the data from a MySQL database?
How has to be the PHP file?
Thanks.

  • 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-14T22:03:15+00:00Added an answer on May 14, 2026 at 10:03 pm

    You really don’t need a plugin for this, you could easily create something similar yourself using jQuery to make AJAX calls to a PHP MySQL feed

    Create a script to make reoccurring AJAX calls using setTimeout() and then add the new found results to the feed container using .prepend()

    HTML

    <html>
    <head><title>Tweets</title>
    
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
    
    <style>
    #tweets {
        width: 500px;
        font-family: Helvetica, Arial, sans-serif;
    }
    #tweets li {
        background-color: #E5EECC;
        margin: 2px;
        list-style-type: none;
    }
    .author {
        font-weight: bold
    }
    .date {
        font-size: 10px;
    }
    </style>
    
    <script>
    jQuery(document).ready(function() {
        setInterval("showNewTweets()", 1000);
    });
    
    function showNewTweets() {
        $.getJSON("feed.php", null, function(data) {
            if (data != null) {
                $("#tweets").prepend($("<li><span class=\"author\">" + data.author + "</span> " +  data.tweet + "<br /><span class=\"date\">" + data.date + "</span></li>").fadeIn("slow"));
            }
        });
    }
    </script>
    
    </head>
    <body>
    
    <ul id="tweets"></ul>
    
    </body>
    </html>
    

    PHP

    <?php
    echo json_encode(array( "author" => "someone",
                            "tweet" => "The time is: " . time(), 
                            "date" => date('l jS \of F Y h:i:s A')));
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any jQuery plugin for progressive light glow effect like this ?
is there any way I can monitor the entire page (using jQuery 1.3.2) and
Is there is any Jquery plugin for create complex DOM struture ? i want
Is there any jquery plugin for implementing iGoogle style dashboard? So basically drag n
Is there any plugin for jQuery that would take an argument for the max
In our application we're using jdMenu plugin to create a hierarchical menu from nested
Is it possible to use JQuery & PHP to create a like button that
I'm using http://isotope.metafizzy.co/ 's isotope plugin to create grid layout. On clicking any of
I'm using the following jQuery plugin and it executes when there's a click action
I am using the Harvest Chosen jQuery plugin successfully to create a drop down

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.