首页  >  文章  >  php教程  >  PHP 实现静态HTML页面统计浏览次数实例代码

PHP 实现静态HTML页面统计浏览次数实例代码

WBOY
WBOY原创
2016-06-13 10:39:32900浏览

PHP 实现静态HTML页面统计浏览次数实例代码

news.html





记录访问次数





 

act.php

$db = mysql_connect(localhost,root, 123456) or die ("连接数据库失败");
mysql_select_db(zend, $db);
mysql_query("SET NAMES  utf8");
mysql_query("update info set msg=msg 1 where id=1");
$sql = "select msg from info where id=1";
$rs  = mysql_query($sql);
$row = mysql_fetch_array($rs);
$str = $row[msg];
$json_string = $str;
echo "getProfile($json_string);";
?>

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn