" class="img-responsive"/> -6ren">
gpt4 book ai didi

php - 单击元素后显示元素详细信息

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

我正在做一个元素,我们在数据库中有一些元素显示在网站上并且运行良好,代码如下:

<form method="post" action="store.php?action=add&ItemNo=<?php echo $products['ItemNo']; ?>">
<a href="product.php"><div class="products">
<img src="<?php echo $products['img'];?>" class="img-responsive"/>
<!-- this connects to the database and gets the image of item -->
<h4><?php echo $products['ItemName'];?></h4>
<h3>$ <?php echo $products['Price'];?></h3>
<input type="text" name="Quantity" class="form-control" value="1"/>
<!-- This creates an box where the default qnt is set to 1 -->
<input type="hidden" name="ItemName" value="<?php echo $products['ItemName']; ?>" />
<input type="hidden" name="Price" value="<?php echo $products['Price']; ?>" />
<input type="submit" name="addtocart" style="margin-top:5px;" class="btn btn-info"
value="Add to Cart"/>
<!-- this creates the btn that adds item to cart -->
</div>
</a>
</form>

现在我正尝试显示有关每个产品的更多详细信息。我想要的只是当用户单击任何项​​目时,他们将被发送到 item.php 页面,其中将包含有关该特定元素的更多详细信息。

此时我在 item.php 中显示了所有信息,但我卡住了。

我不知道如何表达这个问题,也许这就是为什么我在谷歌上找不到任何帮助。我是几周前才开始使用 PHP 的新手。

最佳答案

首先

<a href="product.php?id=<?php echo $products['ItemNo']; ?>"> 

然后在 product.php 上检查 $_GET['id'] 的 url 并在您的查询中使用它。

SELECT * from foo where id=$id

但不要使用原始 ID 或非参数化查询,除非你喜欢被黑客攻击

关于php - 单击元素后显示元素详细信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48894725/

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