452 Posted Topics

Member Avatar for jacob21

Why do you want to find duplicate values? Because perhaps you can write some PHP code to find duplicate values?

Member Avatar for metalix
0
103
Member Avatar for hellojohnatan

What ardav says is right. You can use PHP+MySQL. You need to create a user activity field and check and update it on every page the user views. For example [CODE]CREATE TABLE user_activity ( user_id INT(11) NOT NULL, last_active TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (user_id) )[/CODE] Then, you …

Member Avatar for minitauros
0
139

The End.