您好,欢迎访问一九零五行业门户网

使用匹配查询mysql得到结果后怎么在另外一个页面显示

求助 使用匹配查询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;
我使用匹配查询数据库后得到多个结果, 用表格输出. license字段文件内容我想在show_info.php 页面显示, 请问如何把得到的$row['mac_eth']传递到show_info.php查询licnese? 我这样写,得无效
echo 显示 ; php解释器parse error .
while ($row = mysql_fetch_array($result))
{
echo ;
echo .add_delimiter(strtoupper($row['mac_eth'])). ;
echo 显示 ;
echo .$row['mac_date']. ;
echo
;
}
------解决方案--------------------
echo 显示 ; 
------解决方案--------------------
echo 显示

echo 显示
要按规则来写
------解决方案--------------------
$_get['mac_eth']
其它类似信息

推荐信息