Php仅回显数组中的最后一个帖子并仅更新它

时间:2015-03-04 10:17:23

标签: javascript php arrays

这是我的墙页更新脚本。如果用户回复任何评论,则更新脚本尚未更新到所有用户墙页面而无需刷新。 (就像聊天一样)

为此,我需要向server.php页面发送两个类型id,第一个是用户页面ID,第二个是用户的所有帖子ID。我创建了一个数组,用于在wall.php页面中使用javascript发送所有post id,在server.php中发送另一个数组来获取它们。

如果我在server.php页面上通过print_r($_REQUEST['CID']); exit;测试它,那么所有数组都运行良好。

但是当我回复用户页面中的任何帖子时,更新脚本仅适用于上一篇文章而不适用​​于任何其他帖子。 请问我的问题在哪里?

my wall.php

    // id is dynamic
<div class="case" data-post-id="111"></div> 
<div class="case" data-post-id="222"></div>
<div class="case" data-post-id="333"></div>

//Check for any update after 15 second interval by post id.
<script type="text/javascript" charset="utf-8">

var CID = [];
$('div[data-post-id]').each(function(i){
    CID[i] = $(this).data('post-id');
});

function addrep(type, msg){
CID.forEach(function(id){
    $("#newreply"+id).append("<div class='"+ type +""+ msg.id +"'><ul>"+ msg.detail +"</ul></div>");
});
}
var tutid = '<?php echo $tutid; ?>';
function waitForRep(){
    $.ajax({
        type: "GET",
        url: "/server.php",
        cache: false,
        data: {
        tutid : tutid,
        CID : CID
    },
        timeout:15000, 
        success: function(data){ 
            addrep("postreply", data);
            setTimeout(
                waitForRep, 
                15000 
            );
        },
        error: function(XMLHttpRequest, textStatus, errorThrown){
            setTimeout(
                waitForRep, 
                15000); 
        }
    });
}

$(document).ready(function(){
    waitForRep();
});
</script>

server.php

while (true) {
if($_REQUEST['tutid'] && $_REQUEST['CID']){
foreach($_REQUEST['CID'] as $key => $value){

date_default_timezone_set('Asia/Dhaka');
$datetime = date('Y-m-d H:i:s', strtotime('-15 second'));
$res = mysqli_query($dbh,"SELECT * FROM comments_reply WHERE post_id =".$value." AND qazi_id=".$_REQUEST['tutid']."  AND date >= '$datetime' ORDER BY id DESC LIMIT 1") or die(mysqli_error($dbh));

} // array close

$rows =  mysqli_fetch_assoc($res);  

        $row[] = array_map('utf8_encode', $rows);

        $data = array();

$data['id'] = $rows['id']; 
$data['qazi_id'] = $rows['qazi_id'];
//ect all

// do something and echo $data['detail'] = $detail;

    if (!empty($data)) {
        echo json_encode($data);
        flush();
        exit(0);
    }

}  // request close
sleep(5);
}  // while close

0 个答案:

没有答案