首页  >  文章  >  后端开发  >  PHP 实现静态HTML页面统计浏览次数实例代码_PHP教程

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

WBOY
WBOY原创
2016-07-13 17:41:001062浏览

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);";
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/486169.htmlTechArticlePHP 实现静态HTML页面统计浏览次数实例代码 news.html !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitiona...
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn