Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- <!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>
- <p class="text-secondary"><small><?php echo $rows['description'] ?></small></p></td>
- </tr>
- <?php }?>
- <?php }?>
- </table>
- </body>
- </html>
|