最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php怎么把数据表中的数据导出到excel表中
时间:2022-06-24 18:49:29 编辑:袖梨 来源:一聚教程网
先定义头部信息,表示输出一个excel。然后再以table的形式把数据库的信息循环的echo出来,就好了。
代码如下 | 复制代码 | ||
header("Content-type:application/vnd.ms-excel"); header("Content-Disposition:filename=xls_region.xls"); $cfg_dbhost = 'localhost'; $cfg_dbname = 'testdb'; $cfg_dbuser = 'root'; $cfg_dbpwd = 'root'; $cfg_db_language = 'utf8'; // END 配置
$link = mysql_connect($cfg_dbhost,$cfg_dbuser,$cfg_dbpwd); mysql_select_db($cfg_dbname); //选择编码 www.111Cn.net mysql_query("set names ".$cfg_db_language);
//users表 $sql = "desc users";
$res = mysql_query($sql); echo "
?> |