|
12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
- <title>搜索结果</title>
- <link rel="stylesheet" href="/static/web/font/css/font-awesome.min.css">
- <link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="/static/web/css/admin.css">
- </head>
- <body>
- <table align="center" class="table maintable my-3">
- <tr>
- <td bgcolor="#f5f5f5">当前位置 - <?php echo $keyword;?>搜索结果</td>
- </tr>
- <?php foreach ($asresult as $row) {?>
- <tr>
- <td bgcolor="#e9ecef"><?php echo $row['title'] ?></td>
- </tr>
- <?php foreach ($row['soniterm'] as $rows) {?>
- <tr>
- <td><a href="<?php echo $rows['linkurl'] ?>" target="main"><?php echo $rows['title'] ?></a></td>
- </tr>
- <?php }?>
- <?php }?>
- </table>
- </body>
- </html>
|