It shows the users connected to the site. Uses MySQL.
Installation:
1. Create database table:
CREATE TABLE useronline (
zeit int(15) NOT NULL,
ip varchar(15) NOT NULL,
file varchar(50) NOT NULL,
PRIMARY KEY (zeit),
KEY ip (ip),
KEY file (file)
);
2. copy files on the server
3. edit /include/dbconf.php3
4. Include userin.php3 in your files.
5. Include useronline.php3 where you want to sho online users.