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

55 lines
2.2KB

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