Hy want to used this in specifie forum ...
I Try this :
Code:
// Find out how many threads this user has started
$startcount = $DB_site->query_first("Select COUNT(postuserid) AS starts from thread where forumid='3' AND postusername='$userinfo[username]' AND open!='10'");
$startcount = $DB_site->query_first("Select COUNT(postuserid) AS starts2 from thread where forumid='16' AND postusername='$userinfo[username]' AND open!='10'");
$startcount = $DB_site->query_first("Select COUNT(postuserid) AS starts3 from thread where forumid='14' AND postusername='$userinfo[username]' AND open!='10'");
$starts=$startcount[starts]+$startcount[starts2]+$startcount[starts3];
// end Find threads
It's writting 1 everytime
Some one can show me ?