The reason its mysql based is due to the face that its meant to be used with user tracking and login systems... if you add a user id to the tracker table you can do a RIGHT JOIN in sql to check see when that user is online and last ip etc...

helps with users online AND registered users online !


i do this within Litewarez Webmasters to track what webmasters are active in the chat by scanning sql rows with user id and time less that 3 min ago also with the location file as /webmasters/chat.php

this helps in that way

--

Quote Originally Posted by desiboy View Post

thanks for this

in 5th line of sql
it should be
PHP Code: 
    `timestampvarchar(15NOT NULL DEFAULT '/'
Not really, the reason the location has a default of / is that its a URI and therefore if its not set then we do the default of / witch in location terms means root.

if anything the timestamp should be an `timestamp` interger(15) NOT NULL DEFAULT 0,