$query = mysql_query("select * from our where content is null"); 这句对吗?
假如.我要判断字段为空就执行某些操作.不为空又执行另一操作..
$query = mysql_query("select * from our where content is null"); while($row = mysql_fetch_array($query)){ $str = $row['content']; } if($str){ echo "1"; }else{ echo "2"; }
我数据库里明明有字段..
为什么输出"2"
这是我的数据库字段.有2条.
执行这段select * from our where content is null 看看返回的结果是只有 0 1 还是带上了content 列,再根据结果来做处理
$query = mysql_query("select * from our where content is null");
echo $query;
没有任何返回啊?
@深蓝色梦想: 那就是这段脚本有问题了 试试不加where 条件
加条件啊