Home > Backend Development > PHP Tutorial > 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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-13 17:41:00
Original
1108 people have browsed it

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 of this Website
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template