我收到错误
以下是代码:
<?php
//db connection
$dbserv="localhost:3306";
$dbuser="root";
$dbpass="firepower";
$dbname="account_data";
$db_connect=new mysqli($dbserv, $dbuser, $dbpass, $dbname);
if($db_connect->connect_errno){
die("Error trying to connect to database");
}
session_start();
if(isset($_SESSION['current_page'])){
$prev_page=$_SESSION['current_page'];
$_SESSION['current_page'] = basename($_SERVER['PHP_SELF']);
}
else{
$prev_page='';
}
if(!isset($_SESSION['email'])){
header('location:'.'index.php?_rdr');
die();
}
$limit=$_SESSION['limit'];
$index=1;
$first=true;
$products_ordered='';
while($index<=$limit){
if(isset($_POST[$index]) && $first==true){
$products_ordered.=$_POST[$index].' x Pizza '.$_SESSION['prod_name'][$index];
$first=false;
}
else if(isset($_POST[$index]) && $first==false){
$products_ordered.=', '.$_POST[$index].' x Pizza '.$_SESSION['prod_name'][$index];
}
$index++;
}
//insert order into db
$user_email=$_SESSION['email'];
$total_price=$_SESSION['order_price'];
$query="INSERT INTO orders (email, products_ordered, total_price) VALUES (?, ?, ?)";
$sql_sec=$db_connect->prepare($query);
$sql_sec->bind_param("ssi", $user_email, $products_ordered, $total_price);
$sql_sec->execute();
$result=$sql_sec->get_result();
if(mysqli_num_rows($result)){
exit("Order added successfully!");
}
else{
exit("Error connecting to database!");
}
?>
这很奇怪,因为数据被正确地添加到我的数据库中,而有时我使用相同的代码(用于用户注册)它没有问题...我检查了一切,我不能找到问题。
$query="INSERT INTO orders (email, products_ordered, total_price) VALUES (?, ?, ?)";
$sql_sec=$db_connect->prepare($query);
$sql_sec->bind_param("ssi", $user_email, $products_ordered, $total_price);
$sql_sec->execute();
$result=$sql_sec->get_result();
if(mysqli_num_rows($result)){
exit("Order added successfully!");
}
else{
exit("Error connecting to database!");
}
我得到的错误是:
警告:mysqli_num_rows()要求参数1为mysqli_result,在第58行的C:\ xampp \ htdocs \ Dream Pizza \ add_order.php中给出布尔值
连接数据库时出错!
答案 0 :(得分:1)
来自documentation for the get_result()
function(强调我的):
返回成功SELECT查询的结果集,或其他DML查询的
或失败时。
您正在执行INSERT
查询,因此get_result()
将返回false
。
相反,您应该使用mysqli_stmt_*
函数(或直接访问属性)直接从$sql_sec
语句中获取有关查询结果的信息:
if(mysqli_stmt_affected_rows($sql_sec)){
// or:
if($sql_sec->affected_rows) {
请注意,您需要检查 affected_rows
属性,而不是 num_rows
属性。原因是num_rows
返回结果集中的行数。您没有选择结果集,而是要插入一组新数据。这意味着您实际上对插入的行数感兴趣,这些行存储在affected_rows
属性中。