Heim  >  Artikel  >  Backend-Entwicklung  >  PHP 实现静态HTML页面统计浏览次数实例代码_PHP教程

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

WBOY
WBOYOriginal
2016-07-13 17:41:001031Durchsuche

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...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn