欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php+ajax实现的点击浏览量加1

程序员文章站 2022-06-18 16:23:07
下面就分享一段相对完整的能够在实际应用中派上用场的代码,此代码是ajax结合php代码实现的。 一.ajax代码如下:

下面就分享一段相对完整的能够在实际应用中派上用场的代码,此代码是ajax结合php代码实现的。

一.ajax代码如下:

<!doctype html>
<html>
<head>
<meta charset=" utf-8">
<title>ajax实现浏览量点击增加</title>
<script type="text/javascript">
var xmlhttp=false;
function add(){
 try{
  xmlhttp= new xmlhttprequest;
 }
 catch(e){
  xmlhttp= new activexobject("microsoft.xmlhttp");
 }
 
 xmlhttp.open('get','count.php?a=a',false);
 xmlhttp.onreadystatechange=func;
 xmlhttp.send(null);
}
 
function func(){
 if(xmlhttp.readystate==4){
  var msg=xmlhttp.responsetext;
  var tt=document.getelementbyid("num");
  tt.innerhtml=msg;
 }
}
</script>
</head>
<body>
当前页面数据库中访问次数:<div id='num'></div>
<input type="button" value="增加次数" >
</body>
</html>

二.php代码:

<?php
 mysql_connect('localhost','root','');
 mysql_selectdb('click');
 $rs=mysql_query("update click set num = num +1 where name = '".$_get['a']."'");
 if(mysql_affected_rows()==1){
  $rs=mysql_query("select * from click where name='".$_get['a']."'");
  $row=mysql_fetch_array($rs);
  echo $row['num'];
 }
?>

以上所述就是本文的全部内容了,希望大家能够喜欢。