国内流行的内容管理系统(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.

28 lines
824B

  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>搜索结果</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/admin.css">
  10. </head>
  11. <body>
  12. <table class="table shadow-sm my-3">
  13. <tr>
  14. <td>当前位置 - <?php echo $keyword;?>搜索结果</td>
  15. </tr>
  16. <?php foreach ($asresult as $row) {?>
  17. <tr>
  18. <td><?php echo $row['title'] ?></td>
  19. </tr>
  20. <?php foreach ($row['soniterm'] as $rows) {?>
  21. <tr>
  22. <td><a href="<?php echo $rows['linkurl'] ?>" target="main"><?php echo $rows['title'] ?></a></td>
  23. </tr>
  24. <?php }?>
  25. <?php }?>
  26. </table>
  27. </body>
  28. </html>