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

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

WBOY
WBOYOriginal
2016-06-13 10:39:32947browse

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

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