|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
- <title>编辑评论</title>
- <style>
- body {
- background-image: url(../static/web/img/allbg.gif);
- }
- </style>
- <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
- <link rel="stylesheet" href="../static/web/css/admin.css">
- <script language="javascript" src="../static/web/js/jquery.min.js"></script>
- <script src="../static/web/js/bootstrap.bundle.min.js"></script>
- </head>
- <body>
- <table class="table maintable mt-3" width="98%" border="0" align="center" cellpadding="1" cellspacing="1">
- <tr>
- <td width="100%" height="26" colspan="2" background="../static/web/img/tbg.gif">
- <a href="<?php echo $ENV_GOBACK_URL; ?>">表单管理</a> > 编辑评论:</td>
- </tr>
- <tr>
- <td height="167" colspan="2" align="center" bgcolor="#FFFFFF" valign="top">
- <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 width="100%" border="0" cellpadding="3" cellspacing="1" style="text-align:left">
- <?php
- $formfields = '';
- foreach($fieldlist as $field=>$fielddata)
- {
- $allowhtml = array('htmltext');
- if($row[$field]=='') continue;
- if($fielddata[1]=='img')
- {
- $row[$field] = "<input name='photo' type='file' /> <a href='{$row[$field]}' target='_blank'><img src='../static/web/img/channeladd.gif' border='0' /> 浏览原图</a> <a href='diy_list.php?action=delete&diyid=$diy->diyid&id=$row[id]&do=1&name=$field'>删除原图</a>\r\n";
- }
- else if($fielddata[1]=='addon')
- {
- $row[$field] = "<input name='file' type='file' /> <a href='{$row[$field]}' target='_blank'><img src='../static/web/img/channeladd.gif' border='0' /> 浏览原附件</a> <a href='diy_list.php?action=delete&diyid=$diy->diyid&id=$row[id]&do=1&name=$field'>删除原附件</a>";
- } else {
- if(!in_array($fielddata[1],$allowhtml)){
- $row[$field] = dede_htmlspecialchars($row[$field]);
- $row[$field] = "<input type='text' name='".$field."' value='".$row[$field]."'/>";
- }
- }
- echo '<tr bgcolor="#ffffff"><td width="20%" height="26">'.$fielddata[0].':'.'</td><td width="80%">'.$row[$field].'</td></tr>';
- $formfields .= $formfields == ''? $field.','.$fielddata[1] : ';'.$field.','.$fielddata[1];
- }
- echo "<input type='hidden' name='dede_fields' value='".$formfields."'>";
- ?>
- <tr bgcolor="#FFFFFF">
- <td height="36" width='600' colspan="2" align="center">
- <button type="submit" name="Submit1" class='btn btn-success'>保存修改</button>
- <button type="button" name="Submit2" class='btn btn-success' onClick="location='<?php echo $ENV_GOBACK_URL; ?>';">不理返回</button>
- </td>
- </tr>
- </table>
- </form>
- </td>
- </tr>
- </table>
- </body>
- </html>
|