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

43 lines
1.6KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="<?php echo $cfg_soft_lang; ?>">
  5. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  6. <title>搜索结果</title>
  7. <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
  8. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  9. <link rel="stylesheet" href="../static/web/css/admin.css">
  10. </head>
  11. <body>
  12. <table width="98%" cellpadding="3" cellspacing="1" align="center" class="table maintable mt-3 mb-3">
  13. <tr>
  14. <td bgcolor="#f8f8f8">当前位置 &gt; 搜索结果</td>
  15. </tr>
  16. <tr bgcolor="#FBFCE2" align="center">
  17. <td align="left">&quot;<span class="text-danger"><?php echo $keyword; ?></span>&quot;的搜索结果</td>
  18. </tr>
  19. <tr align="center">
  20. <td align="center">
  21. <?php foreach ($asresult as $row) {?>
  22. <table width="98%" cellspacing="5" cellpadding="0" class="table table-borderless">
  23. <tr>
  24. <td align="left" bgcolor="#f8f8f8"><?php echo $row['toptitle'] ?> => <?php echo $row['title'] ?></td>
  25. </tr>
  26. <tr>
  27. <td align="center">
  28. <table width="98%" cellspacing="0" cellpadding="5">
  29. <?php foreach ($row['soniterm'] as $rows) {?>
  30. <tr>
  31. <td align="left"><a href="<?php echo $rows['linkurl'] ?>" target="main"><?php echo $rows['title'] ?></a><br><?php echo $rows['description'] ?></td>
  32. </tr>
  33. <?php }?>
  34. </table>
  35. </td>
  36. </tr>
  37. </table>
  38. <?php } ?>
  39. </td>
  40. </tr>
  41. </table>
  42. </body>
  43. </html>