国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.4KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  6. <title><?php echo $diy->name;?>-<?php echo $cfg_webname;?></title>
  7. <link rel="stylesheet" href="/static/web/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
  9. <link rel="stylesheet" href="/static/web/css/style.css">
  10. </head>
  11. <body>
  12. <?php ThemeInclude('top.htm');?>
  13. <main class="container py-3">
  14. <ol class="breadcrumb">
  15. <li class="breadcrumb-item"><a href="/">首页</a></li>
  16. <li class="breadcrumb-item"><a href="<?php echo $cfg_phpurl?>/diy.php?action=list&diyid=<?php echo $diy->diyid;?>"><?php echo $diy->name;?>列表</a></li>
  17. <li class="breadcrumb-item"><?php echo $diy->name;?>查看</li>
  18. </ol>
  19. <div class="mb-3">
  20. <a href="<?php echo $cfg_phpurl?>/diy.php?action=post&diyid=<?php echo $diy->diyid;?>" class="btn btn-success btn-sm">发布信息</a>
  21. </div>
  22. <table class="table mb-0">
  23. <?php
  24. echo '<tbody>';
  25. echo '<tr><td>id'.$row['id'].'</td></tr>';
  26. $allowhtml = array('htmltext');
  27. foreach($fieldlist as $field=>$fielddata)
  28. {
  29. if ($row[$field]=='') continue;
  30. }
  31. echo '<tr><td>'.$fielddata[0].'</td></tr><tr><td>'.$row[$field].'</td></tr>';
  32. echo '</tbody>';
  33. ?>
  34. </table>
  35. </main>
  36. <?php ThemeInclude('foot.htm');?>
  37. </body>
  38. </html>