日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

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

發布時間:2024/7/23 39 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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");

}

?>

總結

以上是生活随笔為你收集整理的php 在线人数 mysql_PHP+MYSQL实例:编写网站在线人数的程序代码的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。