在linux下 PHP如何把数据从mysql中导出为excel?
请问一下大家:在linux下PHP如何把数据从mysql中导出为excel?注意是在linux下的....
请问一下大家:在linux下 PHP如何把数据从mysql中导出为excel?注意是在linux下的.
展开
2个回答
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>';
?>
<?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>';
?>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |