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

48 lines
2.1KB

  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/css/bootstrap.min.css">
  7. <link href="../static/font-awesome/css/font-awesome.min.css" rel="stylesheet">
  8. <link href="css/base.css" rel="stylesheet" type="text/css">
  9. </head>
  10. <body background="images/allbg.gif" leftmargin="8" topmargin="8">
  11. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6" class="table maintable table-bordered mt-3">
  12. <tr>
  13. <td height="26" background="images/tbg.gif"><b>当前位置</b>&nbsp;&gt; 搜索结果</td>
  14. </tr>
  15. <tr align="center" bgcolor="#F9FCEF" height="26">
  16. <td align="left">&quot;<span style='color:#dc3545'><?php echo $keyword;?></span>&quot;的搜索结果</td>
  17. </tr>
  18. <tr align="center" bgcolor="#FFFFFF" height="26">
  19. <td align="center">
  20. <?php foreach ($asresult as $row) {?>
  21. <table width="98%" border="0" cellspacing="5" cellpadding="0" class="table table-borderless">
  22. <tr>
  23. <td align="left" bgcolor="#F9FCEF"><strong><?php echo $row['toptitle'] ?></strong> => <strong><?php echo $row['title'] ?></strong></td>
  24. </tr>
  25. <tr>
  26. <td align="center">
  27. <table width="98%" border="0" 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="#F9FCEF" height="26">
  41. <td align="center"></td>
  42. </tr>
  43. </table>
  44. </td>
  45. </tr>
  46. </table>
  47. </body>
  48. </html>