用PHP和MYSQL建立计数器过程详解

5年以前  |  阅读数:673 次  |  编程语言:PHP 

运行MYSQL.EXE
mysql> create database counter;
Query OK, 1 row affected (0.10 sec)

mysql> use counter;
Database changed

mysql> create table tl(id integer(2),count integer(5));
Query OK, 0 rows affected (0.21 sec)

mysql> show columns from tl;
+-------+--------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------+--------+------+-----+---------+-------+
| id | int(2) | YES | | NULL | |
| count | int(5) | YES | | NULL | |
+-------+--------+------+-----+---------+-------+
2 rows in set (0.05 sec)

mysql> select * from tl;
Empty set (0.08 sec)

mysql> insert into tl(id,count) values(1,1);
Query OK, 1 row affected (0.02 sec)

mysql> select * from tl;
+------+-------+
| id | count |
+------+-------+
| 1 | 1 |
+------+-------+
1 row in set (0.03 sec)

下面编写HTML文件内容:

<?php
$myvar = "来访人数:";
echo $myvar;
?>

<?php
mysql_connect() or die("there are problems to connect to mysql!");
$query="select * from tl";
$result=mysql_db_query("counter",$query);
if($result){
$r=mysql_fetch_array($result);
$counter=$r["count"];
$counter=$counter+1;
echo $counter;
$query="update tl set count='$counter' where id=1";
$result=mysql_db_query("counter",$query);
mysql_close();
}
?>

 相关文章:
PHP分页显示制作详细讲解
SSH 登录失败:Host key verification failed
获取IMSI
将二进制数据转为16进制以便显示
获取IMEI
文件下载
贪吃蛇
双位运算符
PHP自定义函数获取搜索引擎来源关键字的方法
Java生成UUID
发送邮件
年的日历图
提取后缀名
在Zeus Web Server中安装PHP语言支持
让你成为最历害的git提交人
Yii2汉字转拼音类的实例代码
再谈PHP中单双引号的区别详解
指定应用ID以获取对应的应用名称
Python 2与Python 3版本和编码的对比
php封装的page分页类完整实例