You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
information-system/application/views/keyworlds/search.php

23 lines
704 B
PHP

<legend>关于“<em class="text-error"><?php echo $keyworld; ?></em>”的关键词</legend>
<?php if(!empty($keyworld_info)){ ?>
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>关键词</th>
<th>最新排名</th>
<th>添加时间</th>
</tr>
</thead>
<tbody>
<?php foreach ($keyworld_info as $key=>$k) { ?>
<tr>
<td><?php echo $key+1; ?></td>
<td><a target="_blank" href="<?php echo site_url('keyworlds/index/'.$k->kw_is_id); ?>"><?php echo $k->kw_keyworlds; ?></a></td>
<td><?php echo $k->kw_rank; ?></td>
<td><?php echo date('Y-m-d',$k->kw_datetime); ?></td>
</tr>
<?php } ?>
</tbody>
</table>
<?php } ?>