Warning: The magic method Math_Captcha::__wakeup() must have public visibility in /home/hucremco/public_html/blog/wp-content/plugins/wp-math-captcha/wp-math-captcha.php on line 87
Anlık Veri arşivleri - HucRem Blog

Facebook Haber Kaynağı Tarzı Anlık Veri Güncellemek

Bu kod ile her saniye anlık olarak sayfa içeriğinizi yenileyebilirsiniz.

index.php dosyası oluşturup aşağıdaki jquery ve timers kütüphanelerini script tagı ile ekleyin

https//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js
https://collabdev.googlecode.com/svn-history/r5/trunk/static/js/jquery.timers-1.0.0.js

ardında script tagı içerisinde bu kodları ekleyin.

$(document).ready(function(){
 var j = jQuery.noConflict();
 j(document).ready(function()
 {
 j(".refresh").everyTime(1000,function(i){
 j.ajax({
 url: "refresh.php",
 cache: false,
 success: function(html){
 j(".refresh").html(html);
 }
 })
 })
 });
});

son olarak sayfa içerisinde istediğiniz yere bu kodu ekleyin.

<div class="refresh" style="font-size:24px;">Güncelleniyor</div>

refresh.php dosyası oluşturup içerisine çekmek istediğiniz veriyi kodlayın.Örneğin;

<?php echo time(); ?>