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.
37 lines
829 B
PHP
37 lines
829 B
PHP
<div class="row-fluid">
|
|
<div class="span3">
|
|
|
|
</div>
|
|
|
|
<div class="span9">
|
|
|
|
<legend>搜索结果</legend>
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th class="span1">#</th>
|
|
<th class="span7">标题</th>
|
|
<th class="span2">发布者</th>
|
|
<th class="span2">时间</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
if (isset($search_list)){
|
|
foreach ($search_list as $key => $item){
|
|
?>
|
|
<tr>
|
|
<td><?php echo $key+1; ?></td>
|
|
<td><a href="<?php echo site_url('infoshare/detail/' . $item->isd_is_id); ?>" target="_blank" ><?php echo $item->isd_title; ?></a></td>
|
|
<td><?php echo $item->isd_fromname; ?></td>
|
|
<td><?php echo date('m/d/Y',strtotime($item->isd_datetime)); ?></td>
|
|
</tr>
|
|
<?php }} ?>
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|