|
- <!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><?php echo $diy->name;?> - powered by dedebiz</title>
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/css/bootstrap.min.css">
- <link href="<?php echo $cfg_cmsurl;?>/static/font-awesome/css/font-awesome.min.css" rel="stylesheet">
- <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/css/dede.css">
- <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/css/index.css">
- <script src="<?php echo $cfg_cmsurl;?>/static/js/jquery.min.js"></script>
- </head>
- <body>
- <div class="main mceneter">
- <?php include(DEDETEMPLATE."/plus/plus_header.htm") ;?>
- <div class="container">
- <div class="ctitle">
- <h3><?php echo $diy->name;?>详细内容</h3>
- <span></span>
- </div>
- <div class="cbox mceneter">
- <div class="maplist">
- <br>
- <table class='table' cellspacing="1">
- <?php
- echo '<tbody>';
- echo '<tr><td bgcolor="#eeeeee" width="20%">id</td><td bgcolor="#eeeeee">'.$row['id'].'</td></tr>';
- $allowhtml = array('htmltext');
- foreach($fieldlist as $field=>$fielddata)
- {
- if($row[$field]=='') continue;
- if($fielddata[1]=='img')
- {
- $row[$field] = "<a href='{$row[$field]}' target='_blank'><img src='{$row[$field]}'/></a>\r\n";
- }
- else if($fielddata[1]=='addon')
- {
- $row[$field] = "<a href='{$row[$field]}' target='_blank'><img src='img/addon.gif' border='0' /> 相关附件</a>";
- } else {
- if(!in_array($fielddata[1], $allowhtml))
- {
- $row[$field] = htmlspecialchars($row[$field]);
- }
- }
- echo '<tr><td bgcolor="#ffffff">'.$fielddata[0].'</td><td bgcolor="#ffffff">'.$row[$field].'</td></tr>';
- }
- echo '</tbody>';
- ?>
- </table>
- </div>
- </div>
- </div>
- </div>
-
- <?php include(DEDETEMPLATE."/plus/plus_footer.htm") ;?>
-
- </body>
- </html>
|