前端是javascript实现,使用JQuery可以简化一些:
$.get(
'/getNewReply.php',
{uid:uid}
function(data){
// 更新html的内容,根据data
}
);
在服务器端的,getNewReply.php来实现查询数据库:
$sql = "select count(id) from replies where uid={$_GET['uid']}";
$r = $db->execute($sql);
echo json_encode($r);
类似这样的代码,但是需要根据你的数据库和其他的来修改代码。