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/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 class="table border my-3">
 - 			<tr>
 - 				<td bgcolor="#f8fafb">当前位置 - <?php echo $keyword;?>搜索结果</td>
 - 			</tr>
 - 			<?php foreach ($asresult as $row) {?>
 - 			<tr>
 - 				<td bgcolor="#f8f9fa"><?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>
 
 
  |