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

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  6. <title>搜索结果</title>
  7. <link rel="stylesheet" href="../static/web/font/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 cellpadding="3" cellspacing="1" align="center" class="table maintable my-3">
  13. <tr>
  14. <td bgcolor="#f5f5f5">当前位置 &gt; <?php echo $keyword;?>搜索结果</td>
  15. </tr>
  16. <?php foreach ($asresult as $row) {?>
  17. <tr>
  18. <td bgcolor="#e9ecef"><?php echo $row['toptitle'] ?> => <?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><br><?php echo $rows['description'] ?></td>
  23. </tr>
  24. <?php }?>
  25. <?php }?>
  26. </table>
  27. </body>
  28. </html>