download12749 2014-05-05 20:13
浏览 40
已采纳

PHP购物车错误:警告:mysql_num_rows()期望参数1是资源,布尔给定[重复]

I'm creating a shopping cart systems and I'm getting this error when trying to add the item to the cart.

<?php 
session_start();

require('inc/connect.php');

if(isset($_GET['action']) && $_GET['action']=="add") {

    $id=intval($_GET['id']);
    if(isset($_SESSION['cart'][$id])) {
        $_SESSION['cart'][$id]['quantity']++;
    }
    else {

        $sql_s ="SELECT * FROM product WHERE product_id = ['id']";
        $query_s=mysql_query($sql_s);
        if(mysql_num_rows($query_s) !=0) {
            $row_s=mysql_fetch_array($query_s);

            $_SESSION['cart'][$row_s['product_id']]==array(
                "quantity" => 1,
                "price" => $row_s['price']);
        }
        else {
            $message="This product id is invalid!";
        }
    }
}

?>

My error is saying line 16 which is:

$query_s=mysql_query($sql_s);
</div>
  • 写回答

1条回答 默认 最新

  • douyue3800 2014-05-05 20:17
    关注

    Change ['id'] to $id:

    $sql_s ="SELECT * FROM product WHERE product_id = $id";
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化