Quote:
Originally Posted by kh99
The code for that is in misc.php, the section that starts with if ($_REQUEST['do'] == 'whoposted')
|
thanks
kh99
it's same , code get info by a query like what
Dave put it
PHP Code:
$posts = $db->query_read_slave("
SELECT COUNT(postid) AS posts,
post.username AS postuser,user.userid,user.username
FROM " . TABLE_PREFIX . "post AS post
LEFT JOIN " . TABLE_PREFIX . "user AS user USING(userid)
WHERE threadid = $threadinfo[threadid]
AND visible = 1
GROUP BY userid
ORDER BY posts DESC
");