Selam, ajax ile php dosyasını çektiriyorum, ancak belli bir sürede çekmesi için ayarladım ancak olmadı sanırım. Her sanisede çekiyor, her sanisede sql sorgusu atıyor yani. sitem çökmeden yardımcı olabilir misiniz :'D
Teşekkürler.

<script>
$(function() {
    updateCounter();
});

function updateCounter() {
    $.ajax({
        url: 'ajax-partnerlik1.php',
        success: function(output) {
            $('#ajaxpartner1').html(output);
        },
        complete: function() {
            setTimeout(updateCounter(), 8000);
        }
    });
}
</script>