PDA

View Full Version : No of new threads/post on non-vb page


pigsy
01-09-2002, 02:54 PM
Quick Question. I can get all sort of other information about the board on non-vb page but im stuck at getting the new threads and new posts since your last visit outside of the forum home page. I've looked at the index.php code and the template, and I can for the life of me figure it out. I can't find anywhere a $getnewthreads[] $getnewposts[] that you see in the template. Am I missing something obvious?

Cheers,
da Pig!

pigsy
01-11-2002, 11:20 AM
So simple, dont know how i missed it, its in the index.php page

$getnewthread=$DB_site->query_first("SELECT COUNT(*) AS threads FROM thread WHERE lastpost > '$bbuserinfo[lastvisit]'");

$getnewpost=$DB_site->query_first("SELECT count(*) AS posts FROM post WHERE dateline > '$bbuserinfo[lastvisit]'");