Quote:
Originally Posted by Boofo
Can you show us the whole thing? 
|
an example (for getting count of new threads since last visit):
PHP Code:
$getnewthread=$DB_site->query_first("
SELECT COUNT(*) AS threads
FROM ".TABLE_PREFIX."thread
WHERE lastpost IN(" . implode(', ', $forumids) . ") > '".$bbuserinfo['lastvisit']."'
");
You just do the same thing for the other query.
Havent tested it but it should work.