Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
- <title>操作搜索</title>
- <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
- <link rel="stylesheet" href="../static/web/css/admin.css">
- </head>
- <body background="../static/web/img/allbg.gif" leftmargin="8" topmargin="8">
- <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="table maintable table-bordered mt-3">
- <tr>
- <td height="26" background="../static/web/img/tbg.gif">当前位置 > 搜索结果</td>
- </tr>
- <tr align="center" bgcolor="#f6f6f6" height="26">
- <td align="left">"<span style='color:#dc3545'><?php echo $keyword; ?></span>"的搜索结果</td>
- </tr>
- <tr align="center" bgcolor="#FFFFFF" height="26">
- <td align="center">
- <?php foreach ($asresult as $row) {?>
- <table width="98%" border="0" cellspacing="5" cellpadding="0" class="table table-borderless">
- <tr>
- <td align="left" bgcolor="#f6f6f6"><?php echo $row['toptitle'] ?> => <?php echo $row['title'] ?></td>
- </tr>
- <tr>
- <td align="center">
- <table width="98%" border="0" cellspacing="0" cellpadding="5">
- <?php foreach ($row['soniterm'] as $rows) {?>
- <tr>
- <td align="left"><a href="<?php echo $rows['linkurl'] ?>" target="main"><?php echo $rows['title'] ?></a><br><?php echo $rows['description'] ?></td>
- </tr>
- <?php } ?>
- </table>
- </td>
- </tr>
- </table>
- <?php }?>
- </td>
- </tr>
- <tr align="center" bgcolor="#f6f6f6" height="26">
- <td align="center"></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </body>
- </html>
|