header("Content-type:application/vnd.ms-excel");
header("Conten-Disposition:filename=hp.xlsx");
?>
i love you |
编号 |
姓名 |
年龄 |
1 |
test |
20 |
2 |
test2 |
22 |
header("Content-type:application/vnd.ms-excel");
header("Content-Disposition:filename=qianshou.xls");
mysql_connect("localhost","root","");
mysql_select_db("test");
mysql_query("SET NAMES GBK");
$query="select * from city ";
$r=mysql_query($query);
?>
城市列表 |
id |
p_id |
name |
while($row=mysql_fetch_assoc($r)){
?>
|
|
|
}
?>