Home >Backend Development >PHP Tutorial >ajax - 用php实现类似于登录人人网后发现:你有X条回复 或者像新浪微博那样右上角实时提示

ajax - 用php实现类似于登录人人网后发现:你有X条回复 或者像新浪微博那样右上角实时提示

WBOY
WBOYOriginal
2016-06-06 20:52:08863browse

据说前台用ajax,后面用php处理数据库....
新手懵了==!有专业人士指导下吗 感激不尽..!

回复内容:

据说前台用ajax,后面用php处理数据库....
新手懵了==!有专业人士指导下吗 感激不尽..!

前端是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);

类似这样的代码,但是需要根据你的数据库和其他的来修改代码。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn