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

50 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 href="css/base.css" rel="stylesheet" type="text/css">
  7. </head>
  8. <body background="images/allbg.gif" leftmargin="8" topmargin="8">
  9. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6">
  10. <tr>
  11. <td height="28" background="images/tbg.gif"><b>当前位置</b>&nbsp;&gt; 搜索结果</td>
  12. </tr>
  13. <tr align="center" bgcolor="#F9FCEF" height="24">
  14. <td align="left">&quot;<font color="red"><?php echo $keyword;?></font>&quot;的搜索结果</td>
  15. </tr>
  16. <tr align="center" bgcolor="#FFFFFF" height="24">
  17. <td align="center">
  18. <?php foreach ($asresult as $row) {?>
  19. <table width="98%" border="0" cellspacing="5" cellpadding="0">
  20. <tr>
  21. <td align="left" bgcolor="#F9FCEF">◇<strong><?php echo $row['toptitle'] ?></strong> => <strong><?php echo $row['title'] ?></strong></td>
  22. </tr>
  23. <tr>
  24. <td align="center">
  25. <table width="98%" border="0" cellspacing="0" cellpadding="5">
  26. <?php foreach ($row['soniterm'] as $rows) {?>
  27. <tr>
  28. <td align="left">◇<a href='<?php echo $rows['linkurl'] ?>' target="main"><?php echo $rows['title'] ?></a><br>
  29. <?php echo $rows['description'] ?></td>
  30. </tr>
  31. <?php } ?>
  32. </table>
  33. </td>
  34. </tr>
  35. <tr>
  36. <td>&nbsp;</td>
  37. </tr>
  38. </table>
  39. <?php }?>
  40. </td>
  41. </tr>
  42. <tr align="center" bgcolor="#F9FCEF" height="24">
  43. <td align="center">&nbsp;</td>
  44. </tr>
  45. </table>
  46. </td>
  47. </tr>
  48. </table>
  49. </body>
  50. </html>