■投稿コメント数
<?php
$sql_comment = "select * from comment where kiji_id = " . $id;
$sql_data = mysql_query($sql_comment, $connect);
if ($sql_data) {
$num_comment = mysql_num_rows($sql_data);
} else {
$num_comment = 0;
}
?>
<?php printf("<a href=\"blog_shosai.php?id=%d#comment\">コメント(%d)</a>", $id, $num_comment); ?>
※対象の記事に対して何件のコメントが投稿されているか表示。
最終更新:2007年01月17日 16:08