在索引页面上,我有:
include "commentformonoff.php";
我想修改它,以便仅在变量$countcomments
等于或小于99时才进行此包含。如果$countcomments
等于100或更多,我想回复一条消息“评论已关闭。”
我该怎么做?
提前致谢,
约翰
答案 0 :(得分:4)
if($countcomment < 100)
{
include "commentformonoff.php";
} else {
echo "Comments Closed";
}