您好我正在尝试通过将变量名称附加到如下 URL 来显示数据库中的特定条目:
echo '<td><a class="index_table" href="includes/view.php?id=$row[id]>$row[Orderno]">
然后在我的 view.php 中我有:
<?php
include 'connect.php';
//Display the Data//
$id=$_GET['id'];
$result=mysql_query("select * from Products where ID=$id");
$row=mysql_fetch_object($result);
echo "<table>";
echo "
<tr bgcolor='#f1f1f1'><td><b>ID</b></td><td>$row->ID</td></tr>
但是,特定的 ID 没有传递给脚本,并且 view.php 中的表是空白的。将 where 子句更改为 'where id = '1' 时,会显示正确的产品。所以我知道这是有效的。
非常感谢