我有这个php:
$sql = mysql_query("select * from asset where
name like '%$search%' or
barcode like '%$search%' or
serial like '%$search%' ");
while ($row = mysql_fetch_array($sql)){
echo '<br/> Name: '.$row['name'];
echo '<br/> Barcode: '.$row['barcode'];
echo '<br/> Serial: '.$row['serial'];
}
它显示在一个名为search.php的页面上,但是,我希望该文件重定向到显示回显文本的静态html页面
答案 0 :(得分:0)
您可以将结果保存在数组中并重定向到传递此数组的其他页面。可能是这样的 -
$results = array();
while ($row = mysql_fetch_array($sql)){
array_push($results, $row);
}
$result_json = json_encode($results);
header('Location: {my-html}?results='.$result_json);
然后在你的html中,获取此字符串并相应地操作它。