Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
596 views
in Plugins by

You can do a plugin if you like, or just open phpmysql and do the following mysql operation:

SELECT handle,written
FROM `qa_users`
WHERE written > NOW() - INTERVAL 12 HOUR
ORDER BY written DESC

which gives you an ordered list of all users that have written something in your forum within the last 12 hours.

Cheers,
Kai

by
Thank you Kai.

Please log in or register to answer this question.

...