免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1950 | 回复: 0
打印 上一主题 下一主题

php生成xls文件 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-10-29 13:54 |只看该作者 |倒序浏览

?php
include '../../inc/auth.php';
include '../public/Base.php';
include '../public/BoonList.php';
//以上作用为pdo连接数据库
header('Cache-Control: no-cache, must-revalidate');
header('Content-type: application/vnd.ms-excel');
header('Content-Disposition: filename=leaveMessage.xls');
?>
html>
body>
table width="100%" border="1" align="center" cellspacing="1" cellpadding="1">
tr align="center">
    td nowrap>b>留言ID/b>/td>
    td nowrap>b>userid/b>/td>
    td nowrap>b>用户名/b>/td>
    td nowrap>b>留言内容/b>/td>
    td nowrap>b>日期/b>/td>
/tr>
?php
if (isset($_GET['trio']) && $_GET['trio']=='trio_message') {
    $sql = "select * from trio_message";
    $order_list = $db->getAll($sql);
    for($i=0;$icount($order_list);$i++){
echo '';
        echo''.$order_list[$i]["id"].'';
        echo''.$order_list[$i]["userid"].'';
        echo''.$order_list[$i]["user_name"].'';
        echo''.$order_list[$i]["content"].'';
        echo''.$order_list[$i]["fdate"].'';
echo '';
    }
}
?>
/table>
/body>
/html>


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/96161/showart_2081954.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP