--------------------------------------------------------------
user-online 1.1 || http://www.phpwelt.de
Copyright (C) 2000 Mike Rbsamen <mtr@phpwelt.de>
This Software is distributed under the GNU General Public 
License.
--------------------------------------------------------------


description:

user-online 1.1 is a php- script which allows webmasters
to include the "xx user-online" features to their websites.
it counts the users who are online since a defined time
and shows the count of users in a small table, which can
be placed everywhere the website. the content of the table
is sorted by the count of users in particular directory.


requirements:

- webserver with at least php 3.0.12
- mysql-database-server


installation:

1. create a 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. upload the files to your server

3. edit all the parameters in the file /include/dbconf.php3
every setting is explained in this file!

4. include the file userin.php3 to the documents you
would like to be counted by user-online. plaese change 
the path of the include file, if necessary.

5. include the file useronline.php3 to the documents you
would like to show the user-online-table. plaese change 
the path of the include file, if necessary. in files with 
useronline.php3 in it, it is not necessary to include
userin.php3 too!!!


changelog:

14.07.2000 - some more configuration-possibilities
11.07.2000 - initial release


contact:

Mike Rbsamen (mtr@phpwelt.de)
http://www.phpwelt.de
