0

バスケット ページの作成に問題があります。製品を追加するたびに、製品が追加されたことが示されますが、製品情報は表示されません...

これは私のbasket.phpのコードです:

<?php

    $id = $_GET[BikeCode];   //the product id from the URL 
    $action     = $_GET[action]; //the action from the URL 

    //if there is an id and that id doesn't exist display an error message
    if($id && !productExists($id)) {
        die("Error. Product Doesn't Exist");
    }

    switch($action) {   //decide what to do 

        case "add":
            $_SESSION['cart'][$id]++; //add one to the quantity of the product with id $id 
        break;

        case "remove":
            $_SESSION['cart'][$id]--; //remove one from the quantity of the product with id $id 
            if($_SESSION['cart'][$id] == 0) unset($_SESSION['cart'][$id]); //if the quantity is zero, remove it completely (using the 'unset' function) - otherwise is will show zero, then -1, -2 etc when the user keeps removing items. 
        break;

        case "empty":
            unset($_SESSION['cart']); //unset the whole cart, i.e. empty the cart. 
        break;
    }


    if($_SESSION['cart']) {

        echo "<table width=\"100%\">";   

            foreach($_SESSION['cart'] as $id => $quantity) {    

              $sql = sprintf("SELECT Manufacturer, Model, Price FROM Bike WHERE BikeCode = $id;", $id); 


                $result = mysql_query($sql);

                if(mysql_num_rows($result) > 0) {

                    list($Manufacturer, $Model, $Price) = mysql_fetch_row($result);

                    $line_cost = $price * $quantity;        //work out the line cost
                    $total = $total + $line_cost;           //add to the total cost

                        echo "<tr><th>Manufacturer:</th><th>Model:</th><th>Price:</th></tr>";
                        echo "<tr>";
                        echo "<td align=\"center\">$Manufacturer</td>";
                        echo "<td align=\"center\">$Model</td>";
                        echo "<td align=\"center\">$Price</td>";
                    echo "</tr>";
                }
            }

            echo "<tr>";
                echo "<td colspan=\"2\" align=\"right\">Total</td>";
                echo "<td align=\"right\">£$total</td>";
            echo "</tr>";

            echo "<tr>";
                echo "<td colspan=\"3\" align=\"right\"><a href=\"$_SERVER[PHP_SELF]?action=empty\" onclick=\"return confirm('Are you sure?');\">Empty Cart</a></td>";
            echo "</tr>";       
        echo "</table>";

    }else{
        echo "You have no items in your shopping cart.";
    }

    function productExists($id) {
            $sql = "SELECT * FROM Bike WHERE BikeCode = $id";

            return mysql_num_rows(mysql_query($sql)) > 0;
    }
?>

エラーはコードのこのセクションから発生していると思いますが、それが何であるかを見つけることができません:

foreach($_SESSION['cart'] as $id => $quantity) {    

                  $sql = sprintf("SELECT Manufacturer, Model, Price FROM Bike WHERE BikeCode = $id;", $id); 


                    $result = mysql_query($sql);

                    if(mysql_num_rows($result) > 0) {

                        list($Manufacturer, $Model, $Price) = mysql_fetch_row($result);

                        $line_cost = $price * $quantity;        //work out the line cost
                        $total = $total + $line_cost;           //add to the total cost

                            echo "<tr><th>Manufacturer:</th><th>Model:</th><th>Price:</th></tr>";
                            echo "<tr>";
                            echo "<td align=\"center\">$Manufacturer</td>";
                            echo "<td align=\"center\">$Model</td>";
                            echo "<td align=\"center\">$Price</td>";
                        echo "</tr>";
                    }
                }

助けていただければ幸いです。事前に感謝します。

編集

これは明らかにエラーです:

Notice: 未定義の定数 BikeCode の使用 - 行 42 の /homes/2012/abpr904/html/velocity/basket.php で「BikeCode」と見なされます Notice: 未定義のインデックス: BikeCode in /homes/2012/abpr904/html/velocity/basket. php on line 42 Notice: 未定義の定数アクションの使用 - 行 43 の /homes/2012/abpr904/html/velocity/basket.php で 'action' を想定しました Notice: Undefined index: action in /homes/2012/abpr904/html/ 43 行目の速度/basket.php 警告: mysql_num_rows() は、パラメーター 1 がリソースであると想定しており、76 行目の /homes/2012/abpr904/html/velocity/basket.php で指定されたブール値です 注意: 未定義の変数: /homes/ の合計2012/abpr904/html/velocity/basket.php 94 行目

4

1 に答える 1

0
$sql = sprintf("SELECT Manufacturer, Model, Price FROM Bike WHERE BikeCode = %d;", $id); 

sprintf の使い方が間違っています。

ただし、 PDOに切り替えて適切にサニタイズする必要があります。

また、$id = $_GET['id'] または何らかの定数識別子を意味していると思います。各アイテムに一意の get パラメータを割り当てるのは正気ではありません。

于 2012-11-24T01:17:39.450 に答える