我在github上找到了一个t恤设计师,并且一直在努力。我设法将客户功能插入数据库,但没有将订单详细信息发布到数据库中。我收到此错误:
注意:未定义的变量:第73行的G:\ xampp \ htdocs \ tdesigner \ php \ send.php中的selectNumRows
尽管我在第73行和往后检查代码时,都看不到任何问题。
功能代码:
/* Get the number of rows and current customer information */
if ($selectCurrentCustomer = $mysqli->prepare($querySelect)) {
/* Fetch the SELECT data */
$selectCurrentCustomer->execute();
$selectCurrentCustomer->bind_result($id);
$selectCurrentCustomer->store_result();
$selectCurrentCustomer->fetch();
/* Store the customer ID and number of rows found */
$selectNumRows = $selectCurrentCustomer->num_rows;
$customerId = (selectNumRows == 0) ? $id : null;
/* Close the query */
$selectCurrentCustomer->close();
}
/* If not a returning customer, insert them into the database. Otherwise, update the existing customer */
if ($selectNumRows == 0) { // LINE #73
我希望有人可以帮助我。谢谢。