求助 使用匹配查询mysql得到结果后如何在另外一个页面显示?
本帖最后由 maniachhz 于 2012-11-25 16:16:01 编辑 大家好,
问题是这样的.
我新建了一个表用来保存licenses,
create table fwbd_mac
( mac_eth char(12) not null, //保存mac号
mac_license varchar(750) not null, //保存license文件
mac_date date not null,
primary key (mac_eth),
unique license_index (mac_license)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
while ($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>".add_delimiter(strtoupper($row['mac_eth']))."</td>";
echo "<td><a href ='show_info.php'>显示</a></td>";
echo "<td>".$row['mac_date']."</td>";
echo "</tr>";
}