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

45 lines
1.9KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  5. <title>操作搜索</title>
  6. <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
  7. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="../static/web/css/admin.css">
  9. </head>
  10. <body>
  11. <table width="98%" cellpadding="3" cellspacing="1" align="center" class="table maintable mt-3 mb-3">
  12. <tr>
  13. <td height="26" background="../static/web/img/tbg.gif">当前位置 &gt; 搜索结果</td>
  14. </tr>
  15. <tr align="center" bgcolor="#f8f8f8" height="26">
  16. <td align="left">&quot;<span class='text-danger'><?php echo $keyword; ?></span>&quot;的搜索结果</td>
  17. </tr>
  18. <tr height="26" align="center">
  19. <td align="center">
  20. <?php foreach ($asresult as $row) {?>
  21. <table width="98%" cellspacing="5" cellpadding="0" class="table table-borderless">
  22. <tr>
  23. <td align="left" bgcolor="#f8f8f8"><?php echo $row['toptitle'] ?> => <?php echo $row['title'] ?></td>
  24. </tr>
  25. <tr>
  26. <td align="center">
  27. <table width="98%" cellspacing="0" cellpadding="5">
  28. <?php foreach ($row['soniterm'] as $rows) {?>
  29. <tr>
  30. <td align="left"><a href="<?php echo $rows['linkurl'] ?>" target="main"><?php echo $rows['title'] ?></a><br><?php echo $rows['description'] ?></td>
  31. </tr>
  32. <?php } ?>
  33. </table>
  34. </td>
  35. </tr>
  36. </table>
  37. <?php }?>
  38. </td>
  39. </tr>
  40. <tr align="center" bgcolor="#f8f8f8" height="26">
  41. <td align="center"></td>
  42. </tr>
  43. </table>
  44. </body>
  45. </html>