इसके लिए आपको वास्तव में प्लगइन की आवश्यकता नहीं है, आप आसानी से jQuery का उपयोग करके PHP MySQL फ़ीड पर AJAX कॉल करने के लिए कुछ ऐसा ही बना सकते हैं
setTimeout() का उपयोग करके पुनरावर्ती AJAX कॉल करने के लिए एक स्क्रिप्ट बनाएं और फिर .prepend() का उपयोग करके फ़ीड कंटेनर में नए पाए गए परिणाम जोड़ें
एचटीएमएल
<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')));
?>