_0001_1-6ren">
gpt4 book ai didi

php - 通过 php 传递数据库数据多页

转载 作者:行者123 更新时间:2023-11-28 02:36:00 25 4
gpt4 key购买 nike

我有一个主页,其中列出了很多不同的产品。我想要的是能够点击产品并将该产品信息传递到模板项目页面,以便显示信息。

<?php while($product = mysqli_fetch_assoc($featured)) :?>

<div class="col_1_of_3 span_1_of_3 simpleCart_shelfItem">
<a href="product.php?id=<? echo $product['ProductID']; ?>">

<div class="product_image">

<img src="images/allsupplementsImages/<?php echo $product['ProductImage1'];?>_0001_1.jpg" class="img-responsive" alt=""/>
<!--<a href="" class="button item_add item_1"> </a> -->
<div class="product_container">

<div class="cart-left">
<p class="title"><?php echo $product['Vendor']; ?> </p>
<p class="title"><?php echo $product['ProductName']; ?> </p>
</div>

<br>
<span class="amount item_price"><?php echo $product['ProductPrice']; ?></span></a>
<br>

<span>
<button class="button item_add item_1 " type="button" onclick="location.href='';"> Add to Cart</button>
</span>

</div>

</div>

</div>

<?php endwhile; ?>

在我的 product.php 中有

$getproduct = $_GET['id'];
echo "$getproduct";

显示的 URL 是“http://localhost/example/product.php?id=%3C?%20echo%20 $product[%27ProductID%27];%20?%3E”

上面显示的不是产品id,怎么还能调出这个产品的其他信息呢。例如 $product['price'],['department'].

最佳答案

将数据库值传递到 $_session 变量并跨页面提供它们并在 header 中使用 session_start()

关于php - 通过 php 传递数据库数据多页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47275411/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com