我有一个JavaScript日历
<input type="text" size="8" id="date" name="calendar[]" />
当我输入以下php时,它会禁用日历。
$result=mysql_query("select * from products where id='maui'");
while($row=mysql_fetch_array($result)){
但是如果我在没有“where子句”的情况下输入php,它就会起作用:
$result=mysql_query("select * from products");
while($row=mysql_fetch_array($result)){
解决方法有哪些选择?
答案 0 :(得分:1)
我认为查询中存在语法错误,或者id
不存在,因此不会返回任何结果。因此,请始终检查数据库访问调用的状态
$result=mysql_query("select * from products where id='maui'");
if ( $result === FALSE ) {
echo mysql_error();
exit;
}
if ( mysql_num_rows() == 0 ) {
echo 'No results returned';
exit;
}
while($row=mysql_fetch_array($result)){
请不要使用
mysql_
数据库扩展,不推荐使用(在PHP7中永远不会使用) 特别是如果您只是学习PHP,请花时间学习PDO
或mysqli_
数据库扩展, and here is some help to decide which to use