致命错误:main()无法在dir / dir / dir / dir中正确写入

时间:2013-09-29 19:01:24

标签: php

我刚刚创建了这一小段代码,但是它把我在标题中看到的错误拉了过来。 这是代码..

<?php if($comment_count->num_rows = 0)
        echo '<div class="CenterText"><p>No Comments Yet</p></div>';    

$comment_count变量 -

$id = $_GET['id'];
$comment_count = $db->query("SELECT * FROM comments WHERE post_id = '$id'");

$db变量 -

$db = mysqli_connect('localhost','--','pw','--') or die('error with connection');
?>

这可能是非常愚蠢的东西,但我无法找到它的推理。谢谢你的帮助!

1 个答案:

答案 0 :(得分:4)

你的IF条件有赋值运算符而不是相等运算符。

变化

<?php if($comment_count->num_rows = 0) 

<?php if($comment_count->num_rows == 0) 
可能这是问题吗?试试吧。