我正在处理我之前的问题(Search Function results within table)中已经回答过的代码,我只需要在结果中再添加一个函数。
$results = array();
$i = 1;
echo "<table border='1'>
<tr>
<th>Item Number</th>
<th>Name</th>
<th>Vendor</th>
<th>Whole Sale Price</th>
<th>Retail Price</th>
<th>Profit</th>
<th>Description</th>
</tr>";
while ($row = mysql_fetch_assoc($searchResult))
{
$varname = isset($_GET['ITEM_NAME']) ? $_GET['ITEM_NAME'] : FALSE;
echo "<tr>";
echo "<td>" . $row['ITEM_NUMBER'] . "</td>";
echo "<td><a href='http://www.hostname.com/details.php?varname1=" . $row['ITEM_NAME'] . "'></a></td>";
echo "<td>" . $row['VENDOR'] . "</td>";
echo "<td>" . $row['WHOLESALE_PRICE'] . "</td>";
echo "<td>" . $row['RETAIL_PRICE'] . "</td>";
echo "<td>" . $row['PROFIT'] . "</td>";
echo "<td>" . $row['DESCRIPTION'] . "</td>";
echo "</tr>"?>
<?php $i++;
} ?>
我想要实现的是一个可点击的“项目名称”,它将转到一个新页面,其中包含该产品的详细信息。我如何链接它以及details.php需要的最简单的代码是什么?我只需要在details.php页面上显示$row['ITEM_NUMBER']
的内容,我会处理剩下的事情,就格式化或任何事情而言,只需要简单的编码即可。