|
123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
- <title>修改自定义表单数据</title>
- <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
- <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="../static/web/css/admin.css">
- <script src="../static/web/js/jquery.min.js"></script>
- <script src="../static/web/js/bootstrap.min.js"></script>
- </head>
- <body>
- <form name="form1" method="post" enctype="multipart/form-data" action="diy_list.php?action=edit&diyid=<?php echo $diy->diyid ?>&id=<?php echo $row['id'] ?>&do=2">
- <input type="hidden" name="dopost" value="edit">
- <input type="hidden" name="id" value="<?php echo $row['id'];?>">
- <table cellpadding="1" cellspacing="1" align="center" class="table maintable my-3">
- <tr>
- <td bgcolor="#f5f5f5" colspan="2"><a href="<?php echo $ENV_GOBACK_URL;?>">自定义表单管理</a> > 修改自定义表单数据</td>
- </tr>
- <?php
- $formfields = '';
- foreach($fieldlist as $field=>$fielddata)
- {
- $allowhtml = array('htmltext');
- if ($row[$field]=='') continue;
- if (!in_array($fielddata[1],$allowhtml)) {
- $row[$field] = dede_htmlspecialchars($row[$field]);
- $row[$field] = "<input type='text' name='".$field."' value='".$row[$field]."'>";
- }
- echo '<tr><td width="260">'.$fielddata[0].':'.'</td><td>'.$row[$field].'</td></tr>';
- $formfields .= $formfields == ''? $field.','.$fielddata[1] : ';'.$field.','.$fielddata[1];
- }
- echo "<input type='hidden' name='dede_fields' value='".$formfields."'>";
- ?>
- <tr>
- <td colspan="2" bgcolor="#f5f5f5" align="center">
- <button type="submit" name="Submit1" class="btn btn-success btn-sm">保存</button>
- <button type="button" name="Submit2" class="btn btn-outline-success btn-sm" onclick="location='<?php echo $ENV_GOBACK_URL;?>';">返回</button>
- </td>
- </tr>
- </table>
- </form>
- </body>
- </html>
|