Jump to content

help out a little here..


corillo181

Recommended Posts

so i'm trying to count the rows in a table ..

the situation is as fallow.. someone leaves a comment about something.. the id goes in to the comment table.. now i want to count how many times ppl left comment about that one thing.. this is what i tried but it dont work..
[code=php:0]
$rows=mysql_query("SELECT comment_id FROM pcomment WHERE photo_id='pic_id' ");
$countrow=mysql_num_rows($rows);

echo $countrow;
[/code]
Link to comment
Share on other sites

Hi,
this should do:
SELECT count(comment_id) FROM pcomment WHERE photo_id='pic_id'

Full explanation at [a href=\"http://dev.mysql.com/doc/refman/5.0/en/counting-rows.html\" target=\"_blank\"]http://dev.mysql.com/doc/refman/5.0/en/counting-rows.html[/a]

Regards,
Andi
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.