日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > 数据库 >内容正文

数据库

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

發布時間:2024/7/23 数据库 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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实例:编写网站在线人数的程序代码的全部內容,希望文章能夠幫你解決所遇到的問題。

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