我正面临着一个非常奇怪的问题。 Mysqli_query在我的localhost中工作正常但在服务器上没有。 这些是我检查过的以下内容 -
_
$qquery = "select uniqueID,question,emailgroup,email,if_read from
expert_questions where id=$id;";
在echo之后生成以下查询: -
select uniqueID,question,emailgroup,email,if_read from expert_questions where id=955;
现在这个查询在localhost中执行完全正常,并在localhost中给我完美的结果。我也试着在服务器的数据库中执行这个查询,它也给我输出。
最奇怪的问题是,对于小于900的ID,该特定查询完全正常。但是对于大于900的id,它不适用于我上面关于id = 955的显示。 请帮帮我。 谢谢。