Log in

View Full Version : users who viewed..


JJH35
12-11-2005, 02:29 AM
im looking for a hack that shows me what users have visited a certain thread, i dont want what users are viewing, i need something that tells me for each thread i choose what users have visited since the thread started, like i start a thread, it gets 500 views, is there a way to see which specific users have visited it

Logikos
12-11-2005, 03:00 AM
The best way I can think of is to add a if statement with a query. I don't have any code in front of me but something like this would get someone else started.

Would have to add a new field in the database with userid, threadid, and dateline. The have a condition check to see if you want thread in forum X to be logged. something like:

if ($logthreadview == 1)
{

}

Inside those brakets add a check to see if the database has a record of this user already visting the thread. If the query returns flase then add it, otherwise do nothing. Hope this helps alittle, maybe someone else can pick it as can't code anything right now.