09/10/2018, 22:55

Số người đang online ?

Có đọan code nào để đếm Số người đang online và hiển thị ra kết quả như kiểu của các forum như vbb,ipb á , em định gắn nó vô html site của em
Giúp em với nha .
Thanks :=)
duongdragonxxx viết 01:08 ngày 10/10/2018
trong database user có một cột (tạm gọi là ISonline giá trị boolean). Khi người dùng login vào, check thành true, khi log out check thành false.
Đến lúc người dùng vào trang web chỉ cần duyệt db xem những user nào mà ISonline=true
viết 01:10 ngày 10/10/2018
KO phải là user , chỉ cần là ai đang online trên web của mình thôi , nếu hiển thị được ip nữa thì càng tốt . Thế thôi ah :=) Giúp với !!
phoipha viết 01:02 ngày 10/10/2018
Bạn vào đây, hướng dẫn khá chi tiết, cung cấp cả code
Không cần database
http://www.dannyscats.co.uk/scripts.html

Mình đang sử dụng cho website này của mình:
http://nhacvangonline.info
Vinhie47 viết 00:59 ngày 10/10/2018
Quote Được gửi bởi Accuser
KO phải là user , chỉ cần là ai đang online trên web của mình thôi , nếu hiển thị được ip nữa thì càng tốt . Thế thôi ah :=) Giúp với !!
Thì kiểm tra session xem, cái này có một người hỏi rồi mà
Còn IP thì bạn tra trong PHP manual xem có đấy.
suydinhduong viết 00:58 ngày 10/10/2018
Chán gướm, tiếc gì không cho luôn đoạn code nhỉ? Tui cũng dang cần .
Vinhie47 viết 01:04 ngày 10/10/2018
Quote Được gửi bởi suydinhduong
Chán gướm, tiếc gì không cho luôn đoạn code nhỉ? Tui cũng dang cần .
Đã bảo có rồi lại còn, bạn tìm trong cùng box "lập trình web" đi.
camihuvn viết 01:03 ngày 10/10/2018
Code PHP ai đang online đây. Bạn làm ơn translation ra nhé

Learn how to add upload a file using the power of PHP.

This script will explain how to display the number of users online using your website. You have to put this on everypage you want it to appear. It can be broken down into 2 sections. The first is creating the table, and the second is the PHP script itself. Beware you should have knowledge of PHP before attempting this. We also reccommend you have PhpMyAdmin

Alright log on to PhpMyAdmin and make a new database called "users". We are going to insert 3 fields into a new table called useronline called timestamp, ip, and file. Lets dump the following code into the Users database using the form on the PhpMyAdmin page:
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)
);

Alright Now lets create the PHP script. Its rather large and lets hope you can follow along. Here is what we'll do in English:
Give the server info.
Get the time.
Insert the values of the person thats online into the mySQL, then create the Failed response if it failed.
Do the same thing but delete the user from the database when he leaves
Grab the results.
Output the results.
Finally, here is the PHP Code:
<?php
//fill in some basic info
$server = "localhost";
$db_user = "username";
$db_pass = "password";
$database = "users";
$timeoutseconds = 300;

//get the time
$timestamp = time();
$timeout = $timestamp-$timeoutseconds;

//connect to database
mysql_connect($server, $db_user, $db_pass);

//insert the values
$insert = mysql_db_query($database,
"INSERT INTO useronline VALUES
('$timestamp','$REMOTE_ADDR','$PHP_SELF')");
if(!($insert)) {
print "Useronline Insert Failed > ";
}


//delete values when they leave
$delete = mysql_db_query($database,
"DELETE FROM useronline WHERE timestamp<$timeout");
if(!($delete)) {
print "Useronline Delete Failed > ";
}

//grab the results
$result = mysql_db_query($database,
"SELECT DISTINCT ip FROM useronline
WHERE file='$PHP_SELF'");
if(!($result)) {
print "Useronline Select Error > ";
}

//number of rows = the number of people online
$user = mysql_num_rows($result);


//spit out the results
mysql_close();
if($user == 1) {
print("$user user online\n");
} else {
print("$user users online\n");
}
?>
Not too tough was it? Well thats it folks. I hope it works out for you and if it doesn't, post on the baord and we'll try to help you out.
Bài liên quan
0