<?PHP

//-------------------------------------------------------------
//  user-online 1.1 || http://www.phpwelt.de
//  Copyright (C) 2000 Mike Rübsamen <mtr@phpwelt.de>
//  This Software is distributed under the GNU General Public 
//  License.
//--------------------------------------------------------------



//Plaese change the path of the include file, if necessary
include ("dbconf.php3");
//DO NOT CHANGE ANYTHING BELOW!!!


//--------------------------------------------------------------



$handler=@mysql_connect($db_server,$db_username,$db_passwort);
@mysql_select_db($db_database,$handler);

$zeit 	= time();
$ip	 	= getenv(REMOTE_ADDR);
$file	= $f;

$result=@mysql_query("INSERT INTO $db_table VALUES ('$zeit','$ip','$file')",$handler);

@mysql_close();

?>