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

40 line
1.2KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  6. <title>搜索结果</title>
  7. <link rel="stylesheet" href="/static/web/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
  9. <link rel="stylesheet" href="/static/web/css/admin.css">
  10. </head>
  11. <body>
  12. <div class="container-fluid">
  13. <ol class="breadcrumb">
  14. <li class="breadcrumb-item"><a href="index_body.php">后台面板</a></li>
  15. <li class="breadcrumb-item active"><?php echo $keyword;?>搜索结果</li>
  16. </ol>
  17. <div class="card shadow-sm">
  18. <div class="card-header"><?php echo $keyword;?>搜索结果</div>
  19. <div class="card-body">
  20. <div class="table-responsive">
  21. <table class="table table-borderless">
  22. <tbody>
  23. <?php foreach ($asresult as $row) {?>
  24. <tr>
  25. <td><?php echo $row['title'] ?></td>
  26. </tr>
  27. <?php foreach ($row['soniterm'] as $rows) {?>
  28. <tr>
  29. <td><a href="<?php echo $rows['linkurl'] ?>" target="main"><?php echo $rows['title'] ?></a></td>
  30. </tr>
  31. <?php }?>
  32. <?php }?>
  33. </tbody>
  34. </table>
  35. </div>
  36. </div>
  37. </div>
  38. </div>
  39. </body>
  40. </html>