首页 | 源码下载 | 网站模板 | 网页特效 | 广告代码 | 网页素材 | 字体下载 | 书库 | 站长工具
会员投稿 投稿指南 RSS订阅
当前位置:主页>网络编程>PHP教程>资讯:PHP+MYSQL实例:网站在线人数的程序代码

PHP+MYSQL实例:网站在线人数的程序代码

www.jz123.cn  2008-10-27   来源:   中国建站    袁袁整理    我要投递新闻

以下为引用的内容:
<DIV id=contentTxt>
<P>PHP实例教程:网站在线人数的程序代码,后台有MYSQL数据库支持。可以直接统计出网站当前的在线人数。</P>
<P><STRONG>首先是创建MYSQL数据库表。</STRONG></P>
<P class=code>CREATE TABLE tablename (<BR>field type(max_length) DEFAULT 'default_value' (NOT) NULL<BR>}</P>
<P>可以使用的SQL语句。</P>
<P class=code>CREATE TABLE useronline (<BR>timestamp int(15) DEFAULT '0' NOT NULL,<BR>ip varchar(40) NOT NULL,<BR>file varchar(100) NOT NULL,<BR>PRIMARY KEY (timestamp),<BR>KEY ip (ip),<BR>KEY file (file)<BR>);</P>
<P>下面我们开始使用PHP脚本,首先定义MYSQL的信息。</P>
<P class=code>server = "localhost"; //你的服务器<BR>db_user = "root"; //你的mysql的用户名<BR>db_pass = "password"; //你的mysql的密码<BR>database = "users"; //表的名字</P>
<P>设置统计的时间(多少秒内在线人数)</P>
<P class=code>timeoutseconds = 300;</P>
<P>取当前时间。</P>
<P class=code>timestamp = time();</P>
<P>上面的完整代码:</P>
<P class=code>&lt;?php<BR>server = "localhost"; //your server<BR>db_user = "root"; //your mysql database username<BR>db_pass = "password"; //your mysql database password if any<BR>database = "users"; //the db name<BR>timeoutseconds = 300;//timeoutseconds limit<BR>//get the current time<BR>timestamp = time();<BR>//calculate the lowest timestamp allowed<BR>timeout = timestamp-timeoutseconds;<BR>?&gt;</P>
<P>连接mysql</P>
<P class=code>mysql_connect('localhost', 'username', 'password');</P>
<P>也允许使用变量形式。</P>
<P class=code>mysql_connect(server, db_user, db_pass);</P>
<P>如果mysql数据库没有密码的话可以使用下面代码连接(当然建议大家一定要设置好自己的密码,这样起码黑客得要解密啊)</P>
<P class=code>mysql_connect(server, db_user);</P>
<P>查询数据库的代码:</P>
<P class=code>mysql_db_query('database', 'query');</P>
<P>我们只要有访客就要增加一条记录。</P>
<P class=code>insert = mysql_db_query(database, "INSERT INTO useronline VALUES<BR>('timestamp','"._SERVER['REMOTE_ADDR']."','"._SERVER['PHP_SELF']."')");</P>
<P>然后我们给出如果用户用错误信息的处理方式。</P>
<P class=code>if(!(insert)) {<BR>print "Useronline Insert Failed &gt; ";<BR>}</P>
<P>然后我们得实现当超过我们设置的时间我们就要删除该用户记录。</P>
<P class=code>delete = mysql_db_query(database, "DELETE FROM useronline WHERE timestamp&lt;timeout");</P>
<P>同样给出删除记录出错的处理。</P>
<P class=code>if(!(delete)) {<BR>print "Useronline Delete Failed &gt; ";<BR>}</P>
<P>下面我们显示数据库中有多少个不同的IP</P>
<P class=code>result = mysql_db_query(database, "SELECT DISTINCT ip FROM useronline WHERE file='"._SERVER['PHP_SELF']."' ");</P>
<P>我们使用</P>
<P class=code>mysql_num_rows(query);</P>
<P>来统计用户,代码如下。</P>
<P class=code>user = mysql_num_rows(result);</P>
<P>最后我们要关闭数据库。</P>
<P class=code>mysql_close();</P>
<P>显示在线的人数。</P>
<P class=code>if(user == 1) {<BR>print("1 user online\n");<BR>} else {<BR>print("user users online\n");<BR>}</P>
<P>最终把上面代码写成一个PHP文件如下。</P>
<P class=code>&lt;?php<BR>//Put your basic server info here<BR>server = "localhost"; //normally localhost<BR>db_user = "root"; //your MySQL database username<BR>db_pass = "password"; //your MySQL database password<BR>database = "users";<BR>timeoutseconds = 300; //it will delete all people which haven't refreshed(so probbably are<BR>// offline or inactive) in timieoutseconds time (so it actually checks the people that are active in the last<BR>// timeoutseconds seconds)<BR>//this is where PHP gets the time<BR>timestamp = time();<BR>//counts the timeout, all people which have been seen last online in earlier than this timestamp, will get removed<BR>timeout = timestamp-timeoutseconds;<BR>//connect to database<BR>mysql_connect(server, db_user);<BR>//add the timestamp from the user to the online list<BR>insert = mysql_db_query(database, "INSERT INTO useronline VALUES<BR>('timestamp','"._SERVER['REMOTE_ADDR']."','"._SERVER['PHP_SELF']."')");<BR>if(!(insert)) {<BR>print "Useronline Insert Failed &gt; ";<BR>}<BR>//delete the peoples which haven't been online/active in the last timeoutseconds seconds.<BR>delete = mysql_db_query(database, "DELETE FROM useronline WHERE timestamp&lt;timeout");<BR>if(!(delete)) {<BR>print "Useronline Delete Failed &gt; ";<BR>}<BR>//select the amount of people online, all uniques, which are online on THIS page<BR>result = mysql_db_query(database, "SELECT DISTINCT ip FROM useronline WHERE file='"._SERVER['PHP_SELF']."' ");<BR>if(!(result)) {<BR>print "Useronline select Error &gt; ";<BR>}<BR>//Count the number of rows = the number of people online<BR>user = mysql_num_rows(result);<BR>//spit out the results<BR>mysql_close();<BR>if(user == 1) {<BR>print("1 user online\n");<BR>} else {<BR>print("user users online\n");<BR>}<BR>?&gt;</P></DIV>

上一篇:PHP中使用ASP.NET AJAX 下一篇:PHP正则表达式的快速学习方法

评论总数:1 [ 查看全部 ] 网友评论


关于我们隐私版权广告服务友情链接联系我们网站地图