本文整理匯總了PHP中CommentModel::countComment方法的典型用法代碼示例。如果您正苦於以下問題:PHP CommentModel::countComment方法的具體用法?PHP CommentModel::countComment怎麽用?PHP CommentModel::countComment使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CommentModel
的用法示例。
在下文中一共展示了CommentModel::countComment方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1:
echo '<div class="well">';
echo 'bai dang khong hop le </div>';
} else {
//dem so comment
$user = $u->getUser($_SESSION['id']);
$submit = 'submit' . $i;
if (isset($_POST[$submit])) {
if (isset($_POST['comment'])) {
$comment['user_id'] = $_SESSION['id'];
$comment['diary_id'] = $diary['id'];
$comment['content'] = nl2br($_POST['comment']);
$c->create($comment);
//header('Location: baidang.php');
}
}
$dem = $c->countComment($diary['id']);
echo '
<div class="well">';
$anh = '../images/' . $user['img'];
echo "<img src={$anh} width=\"40px\" height=\"40\" />";
echo '<a href=trangcanhan.php';
echo '><i class=" icon-pencil icon-2x"></i><b>' . ' ' . $user['username'] . '</b></a>';
echo '<h3 color="blue">' . $diary['subject'] . '</h3>';
echo $diary['time_on'] . '</br>';
echo $diary['content'] . '</br><br>';
echo '
<a href="edit_diary.php?did=' . $diary['id'] . '"><i class="glyphicon glyphicon-edit"> </i></a>
<a href="delete_diary.php?did=' . $diary['id'] . '"><i class="glyphicon glyphicon-trash"> </i></a><br><br>
';
/////////////////
echo ' <form role="form" method="post" action="baidang.php?diary_id=';