Home > Article > CMS Tutorial > How to export dedecms' custom form to excel
dedecmsHow to export a customized form to excel?
Modify 2 files to allow Dreamweaver to customize it Freely export defined forms to Excel tables.
Recommended learning: Dream Weaver cms
Modify the tutorial as follows:
1. \dede\templets\diy_main.htm found
Front desk preview5db79b134e9f6b82c0b36e0489ee08ed
<a href="diy_list.php?action=excel&diyid={dede:field.diyid/}" target="_blank">导出表单Excel</a>
2. \dede\diy_list.php Find
array('post', 'list', 'edit', 'check', 'delete'))
and change it to
array('post', 'list', 'edit', 'check', 'delete', 'excel'))
Continue to find
else { showmsg('未定义操作', "-1"); }
in Add
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>"; }to it
The above is the detailed content of How to export dedecms' custom form to excel. For more information, please follow other related articles on the PHP Chinese website!