Cara menggunakan PHP untuk melaksanakan fungsi troli beli-belah
Troli beli-belah adalah salah satu fungsi yang diperlukan untuk kedai dalam talian. Melalui troli beli-belah, pelanggan boleh menambah produk yang mereka minati, melihat dan mengubah suai produk dan kuantiti pada bila-bila masa, dan akhirnya membuat pembelian. Artikel ini akan memperkenalkan cara menggunakan PHP untuk melaksanakan fungsi troli beli-belah yang mudah.
CREATE TABLE cart ( id INT(11) AUTO_INCREMENT PRIMARY KEY, product_id INT(11), product_name VARCHAR(255), product_price DECIMAL(10, 2), quantity INT(11) );
<?php session_start(); // 检查是否已经登录 if (!isset($_SESSION['user_id'])) { header('Location: login.php'); exit(); } if ($_SERVER['REQUEST_METHOD'] == 'POST') { // 获取商品信息 $product_id = $_POST['product_id']; $product_name = $_POST['product_name']; $product_price = $_POST['product_price']; $quantity = $_POST['quantity']; // 将商品信息添加到购物车 $conn = new mysqli('localhost', 'username', 'password', 'database'); $sql = "INSERT INTO cart (product_id, product_name, product_price, quantity) VALUES (?, ?, ?, ?)"; $stmt = $conn->prepare($sql); $stmt->bind_param("isdi", $product_id, $product_name, $product_price, $quantity); $stmt->execute(); // 提示用户添加成功 echo "商品已添加到购物车"; } ?> <!-- 商品列表 --> <html> <head> <title>商品列表</title> </head> <body> <h2>商品列表</h2> <?php // 获取商品列表 $conn = new mysqli('localhost', 'username', 'password', 'database'); $sql = "SELECT * FROM products"; $result = $conn->query($sql); if ($result->num_rows > 0) { while ($row = $result->fetch_assoc()) { // 输出商品信息及添加到购物车的表单 echo "<p>{$row['product_name']}, 价格:{$row['product_price']}</p>"; echo "<form method='post' action=''>"; echo "<input type='hidden' name='product_id' value='{$row['product_id']}'>"; echo "<input type='hidden' name='product_name' value='{$row['product_name']}'>"; echo "<input type='hidden' name='product_price' value='{$row['product_price']}'>"; echo "数量: <input type='number' name='quantity' value='1' min='1'>"; echo "<input type='submit' value='添加到购物车'>"; echo "</form>"; } } ?> </body> </html>
<?php session_start(); // 检查是否已经登录 if (!isset($_SESSION['user_id'])) { header('Location: login.php'); exit(); } ?> <!-- 购物车列表 --> <html> <head> <title>购物车</title> </head> <body> <h2>购物车</h2> <?php // 获取购物车列表 $conn = new mysqli('localhost', 'username', 'password', 'database'); $sql = "SELECT * FROM cart"; $result = $conn->query($sql); if ($result->num_rows > 0) { while ($row = $result->fetch_assoc()) { // 输出购物车商品信息 echo "<p>{$row['product_name']}, 价格:{$row['product_price']}, 数量:{$row['quantity']}</p>"; } } else { echo "购物车为空"; } ?> </body> </html>
Atas ialah kandungan terperinci Bagaimana untuk melaksanakan fungsi troli beli-belah menggunakan PHP. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!