Home  >  Article  >  Backend Development  >  PHP implementation of static HTML page page views statistics example code_PHP tutorial

PHP implementation of static HTML page page views statistics example code_PHP tutorial

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

PHP implementation of static HTML page statistics page views example code

news.html





Record the number of visits

< ;/head>





act.php

$db = mysql_connect(localhost,root, 123456) or die ("Failed to connect to database");
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 implement static HTML page to count the number of views example code news.html !DOCTYPE html PUBLIC "-//W3C// DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitiona...
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