在linux下 PHP如何把数据从mysql中导出为excel?

请问一下大家:在linux下PHP如何把数据从mysql中导出为excel?注意是在linux下的.... 请问一下大家:在linux下 PHP如何把数据从mysql中导出为excel?注意是在linux下的. 展开
 我来答
匿名用户
2009-01-19
展开全部
这和在什么系统下没有任何关系

<?php
header("Content-Type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=test.xls");
header("Pragma: no-cache");
header("Expires: 0");
echo '<table border="1" cellspacing="2" cellpadding="2" width="50%" align="center">';
echo '<tr bgcolor="#cccccc"><td colspan="3" align="center">' . $title . '</td></tr>';

$query="select * from test";
$result=mysql_query($query) or die(mysql_error());
$fields=mysql_num_fields($result);
// 输出字段名
echo '<tr bgcolor="blue">';
for($i=0; $i < $fields; $i++) {
echo '<td>' . mysql_field_name($result,$i) . '</td>';
}
echo '</tr>';
// 输出内容
while($row=mysql_fetch_row($result)) {
echo '<tr>';
for($i=0; $i<$fields; $i++) {
echo '<td>' . $row[$i] . '</td>';
}
echo '</tr>';
}
echo '</table>';
?>
茉莉菁茶
2009-01-19 · TA获得超过1202个赞
知道小有建树答主
回答量:384
采纳率:0%
帮助的人:0
展开全部
建议你输出纯文本的csv格式,它是以“,”为分隔符的,WIN下,默认以excel打开
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式