简单的把数据以Excel表格的形式下载下来.....

it2022-05-09  69

简单的把数据以Excel表格的形式下载下来.....

<?php header("Content-type:application/vnd.ms-excel"); header("Content-Disposition:attachment;filename=vipnumber.xls");?> <table border="1" cellspacing="0" cellpadding="0" > <tr> <th width="300">会员卡号</th> <th width="200">推荐人</th> <th width="200">销售人</th> <th width="200">操作员</th>

</tr > <tr> <td style="vnd.ms-excel.numberformat:@">123123</td> <td> 张三 </td> <td> 李四 </td> <td> 管理员 </td>

</tr>

</table>

posted on 2013-10-17 17:54 傻蛋他哥 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/xiaoguangxi/p/3374625.html


最新回复(0)