avatar
How to Navigate the Exciting World of VR

Guest 122 20th Jan, 2025

<!DOCTYPE html>
<html lang="vi">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="./public/css/style.css">
</head>

<body>
    <?php
    include "./products.php";
    $getProduct = 0;
    if (isset($_GET['product'])) {
        $getProduct = $_GET['product'];
    }

    foreach ($products as $product) {
        if ($getProduct == $product['id']) {
    ?>
            <div class='sanpham'>
                <img src=<?php echo "public/images/" . $product['image'] ?>>
                <h1><a href=<?php echo "?product=" . $product['id'] ?>><?php echo $product['name'] ?></a></h1>
                <b>Giá: </b> <span class='gia'><?php echo $product['price'] ?></span><br>
                <p><?php echo $product['desc'] ?></p>
                <a class="addcart" href=<?php echo"./addcart.php?id={$product['id']}" ?>>Add To Cart</a>
            </div>
    <?php
        }
    }
    ?>
</body>

</html>
Markup
Description

No description

To share this paste please copy this url and send to your friends
RAW Paste Data