View Full Version : New topics started today
treszoks
02-09-2002, 04:09 AM
I cannot figure out a mysql query that will return the number of new topics started today. The today's active topics count is easy, but I want the count of the new ones created today.
treszoks
02-09-2002, 01:43 PM
I had an epiphany. Here's the code:
$threads_today=mysql_query("SELECT distinct(threadid), count(*) as newcount FROM post GROUP BY threadid HAVING MIN(dateline)>=$datesql");
while($threads_today_stuff = mysql_fetch_array($threads_today)) {
$new_threads_today = $threads_today_stuff[newcount];
}
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.