AddItem函数似乎不起作用

时间:2012-05-11 22:05:56

标签: php mysql

我把这个东西分类工作,但我的AddItem函数似乎不起作用。我点击了产品页面上的“添加项目”链接,它将我带到购物车页面。但购物车页面上没有任何内容。我希望somoneone可以看到它并告诉我该怎么做才能纠正它。

AddItem函数:

function AddItem($itemId, $qty) { 
            // Will check whether or not this item 
            // already exists in the cart table.  
            // If it does, the UpdateItem function 
            // will be called instead 


            // Check if this item already exists in the users cart table 
            $result = mysql_query("select count(*) from cs368_cart where cookieID = '" . GetCartID() . "' and itemId = $itemId");
            $row = mysql_fetch_row($result); 
            $numRows = $row[0]; 

            if($numRows == 0) { 
                    // This item doesn't exist in the users cart, 
                    // we will add it with an insert query 
                    mysql_query("insert into cs368_cart(cookieID, itemId, qty) values('" . GetCartID() . "', $itemId, $qty)");
            }       
            else {  
                    // This item already exists in the users cart, 
                    // we will update it instead 

                    UpdateItem($itemId, $qty);  
                    }       
            }

我刚检查了数据库的cs368_cart表,它是空的。

mysql> select * from cs368_cart
-> ;
Empty set (0.00 sec)

显然没有添加任何内容。我想知道我的查询是否正确?

我的桌子:

mysql> select * from cs368_products
-> ;
+--------+----------------+---------------------------------------------+-----------+
| itemId | itemName       | itemDesc                                    | itemPrice |
+--------+----------------+---------------------------------------------+-----------+
|      1 | French Vanilla | A medium blend with a hint vanilla          |      9.79 | 
|      2 | Hazelnut Cream | A light blend with a spicy note of Hazelnut |      9.69 | 
|      3 | Columbian      | A medium-dark blend straight up             |      9.89 | 
+--------+----------------+---------------------------------------------+-----------+
3 rows in set (0.00 sec)

和我的购物车表;

mysql> show columns from cs368_cart;
+----------+-------------+------+-----+---------+----------------+
| Field    | Type        | Null | Key | Default | Extra          |
+----------+-------------+------+-----+---------+----------------+
| cartId   | int(11)     | NO   | PRI | NULL    | auto_increment | 
| cookieId | varchar(50) | NO   |     |         |                | 
| itemId   | int(11)     | YES  |     | NULL    |                | 
| qty      | int(11)     | YES  |     | NULL    |                | 
+----------+-------------+------+-----+---------+----------------+
4 rows in set (0.00 sec)

这是我的GetCartId我有一个单独的php文件,这个文件被这个AddItem函数的php文件正确调用。

function GetCartId(){
    if(isset($_COOKIE["cartId"])){
    return $_COOKIE["cartId"];
}
else {
    session_start();
    setcookie("cartId", session_id(), time()+((3600*24)*30));
    return session_id();
}

2 个答案:

答案 0 :(得分:1)

您应该将插入查询更改为类似于下面的内容,这将告诉您插入的sataement有什么问题(优雅的做法是优雅地处理任何错误)

<?php
    $queryResult = mysql_query("insert into cs368_cart(cookieID, itemId, qty) values('" . GetCartID() . "', $itemId, $qty)");
if (!$queryResult) {
    die('Invalid query: ' . mysql_error());
}

?>

基于http://php.net/manual/en/function.mysql-query.php

中的示例

答案 1 :(得分:1)

当您的表以cartId为整数时,您似乎试图将cartId作为字符串插入。仔细看看PHP字符串中的SQL。