こんにちは、あなたが私を助けることができるかどうか疑問に思っていますか? itemsという配列に保存した参照番号を使用してデータベースから行を取得しようとしており、行をテーブルに表示していますが、ページに表示する参照番号しか取得できません.. .どんな助けでも本当に感謝していますか?
</head>
<h1>Shopping Cart</h1>
<body>
<?php $con = pg_connect("blah blah");
if (!$con){
die('Could not connect: ' . pg_error());
}
if (isset($_POST['items'])) {
$n = count($_POST['items']);
for($i=0; $i < $n; $i++)
echo $_POST['items'][$i];
}
if(!$_SESSION["selectingrows"]== 0){
$result = pg_query ($con, "SELECT title, platform, description, price FROM CSGames WHERE 'refnumber' = 'items[]'");
echo "<table>
<tr>
<th>Title</th>
<th>Platform</th>
<th>Description</th>
<th>Price</th>
</tr>";
while($rows = pg_fetch_result($result));{
echo"<tr>"; echo "<td>" . $rows['title'] . "</td>"; echo "<td>" . $rows['platform'] . "</td>"; echo "<td>" . $rows['description'] . "</td>"; echo "<td>" . $rows['price'] . "</td>";
echo"</tr>";
}
echo"</table>";
}