导出效果
添加教程
1、dedetempletsdiy_main.htm 找到
在它的下面加入一行 | <a href="diy_list.php?action=excel&diyid={dede:field.diyid/}" target="_blank">导出表单Excel</a> |
2、dedediy_list.php 找到 else{ showmsg('未定义操作', "-1");} |
在它的上面加入 else if($action == 'excel'){header("Content-type:application/vnd.ms-excel");header("Content-Disposition:attachment;filename={$diy->name}_".date("Y-m-d").".xls");$fieldlist = $diy->getFieldList();echo "<table><tr>";foreach($fieldlist as $field=>$fielddata){echo "<th>{$fielddata[0]}</th>";}echo "<th>状态</th>";echo "</tr>";$sql = "SELECT * FROM {$diy->table} ORDER BY id DESC";$dsql->SetQuery($sql);$dsql->Execute('t');while($arr = $dsql->GetArray('t')){echo "<tr>";foreach($fieldlist as $key => $field){echo "<td>".$arr[$key]."</td>";}$status = $arr['ifcheck'] == 1 ? '已审核' : '未审核';echo "<td>".$status."</td>";echo "</tr>";}echo "</table>";} |
完成。
本文转载自dedediy's bolg 原文网址:www.dedediy.com 本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!