当前位置:Gxlcms > PHP教程 > PHP实现静态HTML页面统计浏览次数实例代码_PHP教程

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

时间:2021-07-01 10:21:17 帮助过:5人阅读

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...

人气教程排行