sirstrongbad Posted November 15, 2003 Share Posted November 15, 2003 okay. the file in question is: http://graphicintegrity.net/newhtml/list_news.php i would like to display the number of comments to each particular article, but no matter how i set my SQL statement up, it always returns the same number for every article. as it is now, it is showing the total number of comments made. i have two tables for this. news_comments and news_content. here\'s my SQL statement thus far: $total_comments = mysql_result(mysql_query("SELECT COUNT(*) as Num FROM news_content con, news_comments com WHERE com.news_id = con.id"),0); i keep looking at it and it makes sense. there may be 100+ comments with the same news_comments.news_id value referencing a particular news.id value, but it always shows the total. help please? i\'m somewhat \"new\" to this whole php/mysql thing. i followed quite a few tutorials to get to where i have this thing now. thanks in advance![/code] Quote Link to comment https://forums.phpfreaks.com/topic/1372-built-a-news-system-for-my-website-need-a-little-help-tho/ Share on other sites More sharing options...
Barand Posted November 16, 2003 Share Posted November 16, 2003 You need to specify which item. You are counting the total number of comments which have corresponding content items. $conid = somevalue; $total_comments = mysql_result(mysql_query(\"SELECT COUNT(*) as Num FROM news_content con, news_comments com WHERE com.news_id = con.id AND con.id = $conid \"),0); or, for totals of each con.id : $total_comments = mysql_result(mysql_query(\"SELECT con.id, COUNT(*) as Num FROM news_content con, news_comments com WHERE com.news_id = con.id GROUP BY con.id \"),0); Quote Link to comment https://forums.phpfreaks.com/topic/1372-built-a-news-system-for-my-website-need-a-little-help-tho/#findComment-4547 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.