2 Star 2 Fork 4

Tody_Guo/php_issue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
export_open_issue-2003.php 1.83 KB
一键复制 编辑 原始数据 按行查看 历史
Tody Guo 提交于 2017-12-22 09:40 . issue support export to excel.
<?php
include 'inc/conn.php';
header ("Content-type:application/vnd.ms-excel");
header ("Content-Disposition:filename=Open_Issue.xls");
echo "<table border='1'>";
echo "<tr><td align='center' colspan='11'>Open Issue List</td></tr>";
echo "<tr>";
echo " <td align='center'>编号</td>";
echo " <td align='center'>问题描述</td>";
echo " <td align='center'>短期对策</td>";
echo " <td align='center'>长期对策</td>";
echo " <td align='center'>不良状况</td>";
echo " <td align='center'>分析人员</td>";
echo " <td align='center'>责任单位</td>";
echo " <td align='center'>问题状态</td>";
echo " <td align='center'>分析内容</td>";
echo " <td align='center'>开始时间</td>";
echo " <td align='center'>更新时间</td>";
echo "</tr>";
$db = new mysql();
$sql = "select * from validate_issues";
$db->query($sql);
$num = $db->db_num_rows();
if ($num == 0)
echo "No data was found!";
for($i=0; $i<$num; $i++){
$row = $db->fetch_assoc();
$j=$i+1;
echo "<tr><td align='center'>$j</td><td align='left'>".
htmlspecialchars_decode($row['val_reason'])."</td><td align='left'>".
htmlspecialchars_decode($row['val_purpose'])."</td><td align='left'>".
htmlspecialchars_decode($row['val_scheme'])."</td><td align='center'>".
htmlspecialchars_decode($row['val_failrate'])."</td><td align='center'>".
htmlspecialchars_decode($row['val_owner'])."</td><td align='center'>".
htmlspecialchars_decode($row['val_duty'])."</td><td align='center'>".
htmlspecialchars_decode($row['val_status'])."</td><td align='left'>".
htmlspecialchars_decode($row['val_content'])."</td><td align='center'>".
htmlspecialchars_decode($row['val_date'])."</td><td align='center'>".
htmlspecialchars_decode($row['val_update'])."</td></tr>";
}
echo "</table>";
$db->close();
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/tody_guo/php_issue.git
git@gitee.com:tody_guo/php_issue.git
tody_guo
php_issue
php_issue
master

搜索帮助