php 在线人数 mysql_PHP+MYSQL实例:编写网站在线人数的程序代码

以下为引用的内容:

//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

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");

}

?>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值