我正在处理我上一个问题(表中的搜索函数结果)中已回答的代码,我只需要在我的结果中再添加一个函数。
$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']
,我会处理其余的,就格式或任何事情而言,只需要简单的编码即可。