查看完整版本: 刚用PHP写了一个网站在线人数的程序,请大家进来指点下!

lilcy88 2008-5-12 14:56

刚用PHP写了一个网站在线人数的程序,请大家进来指点下!

刚用PHP写了一个网站在线人数的程序,请大家进来指点下!

我是用PHP+MYSQL来写的,原理:网站在线人数的程序代码+后台有MYSQL数据库支持,可以直接统计出网站当前的在线人数。

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

[url=http://www.now.cn/vhost/][img]http://b.todayisp.com/bbs/760x90h.gif[/img][/url]

以上代码我是在时代互联提供的免费试用主机上测试的,感觉效果还不错,性能很稳定,不信的话你也可以去试试。当然,记得指出我这个程序中的不足先哦。
时代互联是行业内最早开始提供PHP 虚拟主机的公司之一,现在已经是的金牌域名注册商和中国互联网客户满意度十佳单位,产品功能已经非常完善 ,特别提一下几个特有用的功能:数据库自动备份、免费集成繁简通简装版、多域名绑定、多子网站支持、GCDN 网站加速器、镜像加速、高级访问统计系统、支持WAP、可选电信/网通/香港机房。
我之前建站的时候选的是他们公司标准商务E型,因为这款机型还特别支持ASP.NET3.5(3.0/2.0/1.1)/ASP。
当然啦,这两款主机也是相当不错的。
智强商务B型:Unix /Linux 操作系统+独立网页空间1000MB+送1000MB邮局空间+100MB MySQL数据库空间=1869元/年
标准商务B型:Unix /Linux 操作系统+独立网页空间500MB+送800MB邮局空间+60MB MySQL数据库空间=1365元/年

提供一下这个公司的联系方式:请见:[url]http://www.now.cn/vhost/[/url]
空间专线: 0756-2623871  QQ:168075865,好象还有全球免费网络电话:全球免费咨询电话 [url]http://www.now.cn/callcenter/call.net?LineName=55[/url]
自己加QQ去问吧。

ku19503 2008-5-12 23:21

顶支持楼上的

顶,支持楼上的

21dahan 2008-5-19 19:43

看看

[b][size=5]HaHa,顶一个,,,,,,[/size][/b][url=http://21dahan.cn/][color=#efffff]含花性用品商城[/color][/url][url=http://ny.21dahan.cn/][color=#efffff]情趣内衣[/color][/url][url=http://by.21dahan.cn/][color=#efffff]安全套[/color][/url]

[url=http://qqzonefree.com.cn/][color=gray]qq空间免费皮肤代码[/color][/url]
[url=http://qqzonefree.com.cn/pifu.shtml][color=gray]qq空间黑色皮肤代码[/color][/url]

ku19503 2008-5-20 19:31

鉴定

我来鉴定了

看完走人

lrdlks 2008-5-20 21:05

厦门进口轴承 厦门FAG轴承 厦门FAG进口轴承

[size=2]我写的文章太好了,我顶你兄弟[/size]
[url=http://www.cnnsk.cn/zblog/catalog.asp?cate=2]厦门FAG轴承[/url]
[url=http://www.cnnsk.cn/zblog/catalog.asp?cate=3]厦门NSK轴承[/url]
[url=http://www.cnnsk.cn/zblog/catalog.asp?cate=5]厦门TIMKEN轴承[/url][url=http://www.cnnsk.cn/zblog/catalog.asp?cate=1]厦门SKF轴承[/url]

kuoui19503 2008-5-28 12:55

上海私家侦探,LED屏厂家,触摸显示器,排队叫号机

[size=7][url=http://www.zs007.com/][color=blue]上海私家侦探[/color][/url]
大家都很喜欢的服务
最好的旅游地方[url=http://www.moleger.com/][color=blue]LED屏厂家[/color][/url]
[url=http://www.moleger.com/][color=blue]触摸显示器[/color][/url] [url=http://www.moleger.com/][color=blue]排队叫号机[/color][/url][/size]

tagga64 2008-5-29 03:35

铁板烧,冷面机,肉丸机,梅花糕,豆浆机www.81821960.com

致富机械,致富好助手,沈阳基石东方机械有限公司提供 www.81821960.com

[url=http://www.81821960.com]铁板烧[/url]       www.81821960.com
[url=http://www.81821960.com]冷面机[/url]       www.81821960.com
[url=http://www.81821960.com]肉丸机[/url]       www.81821960.com
[url=http://www.81821960.com]梅花糕[/url]       www.81821960.com
[url=http://www.81821960.com]豆浆机[/url]       www.81821960.com

[img]http://www.81821960.com/img/shipin3.jpg[/img]

defg684 2008-5-29 11:12

萧山中介

支持!!呵呵  
[img]http://www.mbcn.cn/article/UploadPic/2007-4/200744144912329.gif[/img][img]http://www.52qqbq.cn/upimg/allimg/080101/2249432.gif[/img]  














[img]http://msx.jnxy.edu.cn/bbs/skins/Default/sigline.gif[/img]

[url=http://www.xsgfw.com]萧山房产中介[/url]推荐:提倡规范服务,正确引导,厚道操作,协调房地产市场,解决租房买房需求.欢迎各省市正规中介加盟合作,和[url=http://www.xsgfw.com]萧山中介[/url]共同进步发展!

选矿环球 2008-5-30 08:03

选矿生产线

郑州环球重工机械有限公司专业生产[url=http://www.hqzg.net/xuankuangshengchanxian.htm]选矿生产线[/url],[url=http://www.hqzg.net/zhishashengchanxian.htm]制砂生产线[/url],[url=http://www.hqzg.net/suishishengchanxian.htm]碎石生产线[/url]
[b]联系方式:[/b]
地 址:郑州市南阳路216号
电 话:86-371-67878896

蜻蜓空间 2008-5-31 04:20

空调安装的偷走了我家的手机

[color=black]昨天我家装空调,在西四的一个[/color][url=http://www.bjhongda2008.com/anzhuang.htm][color=black]空调安装[/color][/url][color=black]聚集点找了一个[/color][url=http://www.bjhongda2008.com/anzhuang.htm][color=black]空调安装[/color][/url][color=black]的大哥,没想到空调修完了客厅的手机没了。我去找他们,他们却把一大堆[/color][url=http://www.bjhongda2008.com/anzhuang.htm][color=black]空调安装[/color][/url][color=black]的哥们叫到了一起,说我侮辱他们,试图要与我动武,无奈,只好报警。[/color]

美女视频 2008-6-1 03:06

磁选机2

[url=http://www.chuipoji.net/cixuanji.html]学生集体拍裸照长称受陈冠希影响[/url]

[url=http://www.chuipoji.net/cixuanji.html]美国大片第一滴血4[/url]
[url=http://www.chuipoji.net/cixuanji.html]影星谭耀文被曝找“公关小姐”解闷[/url]

jszjhz571 2008-6-1 10:02

堕到地上的眼泪

但是他[url=http://www.jushangnet.com/tradeinfo/offerdetail/35-1113-3335-5516.html]华凌空调维修[/url]现在,狠狠盯着自己[url=http://china.nowec.com/supply/detail/1052177.html]科龙空调维修[/url]这滴堕到地上的眼泪,这滴眼泪,赫然被他[url=http://cn.sugoo.com/Business/Detail,IdYBPnAlI%60.htm]新科空调维修[/url]紧紧盯得急速蒸发,顷刻化为[url=http://info.b2b168.com/s168-2194040.html]夏普空调维修[/url]一缕白烟,九幽神侯恨恨的吐出[url=http://www.edeng.cn/data/china/zhejiang/hangzhou/service/erepair/732677-1.html]海信空调维修[/url]四个字:“最后一次!”

你好_笨笨 2008-6-6 16:18

郑州讯腾诚招:虚拟主机代理商!
郑州讯腾科技有限公司诚征代理加盟,
帮您实现创业梦想,
成为我们的代理后,您将拥有和我们一样的网络平台。
你的下级用户也将通过您的网站平台在线购买各项服务。
这将会给您带来一个很大的利润空间,从而实现您的创业梦想。
只要你会上网,那么你就可以以零投资的方式挣到自己的第一桶金,成就自己的梦想!

零投资(高利润的价格优势),即可享受高达60%以上的纯利润空间。
不同代理级别享有不同的利益高额回报;为了鼓励代理合作伙伴积极拓展市场,代理商的业务量大幅度的增加,将会得到我们升级或者得到更多的优惠。期待你的到来!代理正在活动中:双线空间,免费送平台
郑州讯腾公司诚招代理,
金牌代理预付3000元原价5000元,空间打四折
银牌代理预付1000元,原价2000元,空间打六折
普通代理预付500元,原价1000元,空间打八折

嘿嘿,话不多说,欢迎咨询QQ:320250382  
相信自己的眼睛,绝对没错!!!欢迎咨询
,包您满意!!!!

[url]http://www.centn.cn[/url]  [url]http://www.51hope.cn/[/url]

qrst462 2008-6-10 00:56

很不错的地方

[size=6]很不错的地方哦:[/size]
[size=6]以后俺常来!![/size]
[img]http://www.dllycn.com/upload/5.jpg[/img]

[url=http://www.kbrother.cn]翻译公司[/url]专业提供翻译公司等相关翻译公司的服务!
[url=http://www.bjyhtf.com]翻译公司[/url]专业提供翻译公司等相关翻译公司的服务!
[url=http://www.wowgoldvip.com/news_list.asp]wow gold[/url]的销售wow gold,有很多便宜的wow gold啊!
[url=http://www.mygamesale.com]wow gold[/url]的销售wow gold,有很多便宜的wow gold啊!
[url=http://www.wowgold-sale.com]wow gold[/url]的销售wow gold,有很多便宜的wow gold啊!
页: [1]
查看完整版本: 刚用PHP写了一个网站在线人数的程序,请大家进来指点下!