我将 URL 中的 ID 传递给productPage.php
在productPage.php中:
$ProductID = $_GET["ProductID"];(即产品 ID = 1 )
然后我使用 ProductID 查询数据库以获得正确的产品。
$sql = "select * from Products where id = '".$ProductID."' "
| Id | Category | Type |
|:-----------|------------:|:------------:|
| 1 | shoes | 8 |
| 2 | Underpants | 21 |
| 3 | socks | 4 |
| 4 | shoes | 8 |
| 5 | flip flops | 11 |
| 6 | shoes | 34 |
因此,我的查询的类型值结果是 8 我应该怎么做才能只获取具有相同类型的产品?(8) 我必须使用第二个查询吗?
杨魅力
LEATH