1

price選択したものcategorysizeドロップダウンに表示したい slideingDiv。しかし、私が以下で行ったことは機能していません。データが送信されたかどうかを確認するためにエコーアウトしようとしましたが、何も得られませんでした。私のコードに何か問題がありますか?

脚本

<script type="text/javascript">
$(document).ready(function () {
    $(".slidingDiv").hide();
    $(".show_hide").show();

    $('.show_hide').click(function () {
        $(".slidingDiv").slideToggle();
    });
});
</script>

ボタン

<button a href="product.php?ProdID=<?php echo $id; ?>" class="show_hide" id="button" name="button">Add to cart</a></button>

PHP

<?php
                    dbconnect();
                    if(isset($_POST['pid']) && isset($_POST['length']) && isset($_POST['Qty']) &&     `isset($_POST['Category'])){`  
            $pid = $_POST['pid'];
            $length = $_POST["length"];
            $qty = $_POST['Qty'];
            $Category = $_POST['Category'];

            echo $pid;     // I have add this echo to see data have been passed though but i get nothing in return
            echo $length; 

                $stmt4 = $conn->prepare("
                SELECT Product.Name as ProductName, Category.Name, size, Price
                FROM item_Product, Product, Category
                WHERE Product.ProdID =:pid
                AND size= :length  AND Category.Name = :Category Limit  1");
                $stmt4->bindParam('pid',$pid);
                $stmt4->bindParam('length',$length); 
                $stmt4->bindParam('Category',$Category); 
                $stmt4->execute();
                foreach ($stmt4->fetchAll(PDO::FETCH_ASSOC) as $row4 ) {
                $product_name = $row4["ProductName"];
                $price = $row4["Price"];
                $length = $row4["size"];    
                $Category = $row4["Name"];

                ?>

                Item was added shopping bag </br>
                Name:<?php echo $row4['ProductName']; ?> </br>
                Length:<?php echo $row4['size']; ?> </br>
                Category:<?php echo $row4['Name']; ?> </br>
                Price:<?php echo $row4['Price']; ?> </br>

                <?php } } 
                ?>
                <a href="cart.php">View Cart</a>
                </div>

テーブル

<td width="160">Price:</td>
                echo '<td name="pricetag" id="pricetag">'.$row2['Price'].'</td>';

</tr>
    <tr>    
<td>Category</td>   
    <td>
<select id="Category" name="Category">
        echo '<option value="'.$row['Name'].'">'.$row['Name'].'</option>';

</select>
</td>
</tr>

     <tr>
    <td width="160">Length:</td>
                        <td>
    <select name="length" id="length">

<option SELECTED value="'.$row3['size'].'">'.$row3['size'].</option>

</select>
</td>
    </tr>
        <tr>
            <td>Quantity</td>
                        <td><input type="text" name="Qty" id="Qty" value="1" style="width: 20px; text-align: right" /></td>

                    </tr>       
                </table>    
                <div class="cleaner h20"></div>
                <input type="hidden" name="pid" id="pid" value="<?php echo $id; ?>" />
                <div class="button">
                <button class="show_hide" id="button" name="button">Add to cart</button>
                </div>
4

4 に答える 4

0

あなたの中にスペースがないようです<?php} ?>

次のようなことをします<?php } ?>

于 2013-06-25T09:44:49.647 に答える
0

エラー:

<?php} ?>

これを試して、

<?php } ?> // add space between php and }
于 2013-06-25T09:47:07.530 に答える
0
 <?php}
should be
 <?php }

また

<button a href="product.php?ProdID=<?php echo $id; ?>" class="show_hide" id="button" name="button">Add to cart</a></button>間違っています

する必要があります

<button><a href="product.php?ProdID=<?php echo $id; ?>" class="show_hide" id="button" name="button">Add to cart</a></button>
于 2013-06-25T10:10:01.997 に答える