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/analytics/leave.php

31 lines
1.1 KiB
PHP

<div id="maincon" class="analytics">
<?php echo $menu; ?>
<div id="rightcon">
<div class="title"> <h2 class="edit">常见的退出页面</h2></div>
<div class="view_log_box clear">
<table width="100%" border=0 cellpadding="0" cellspacing="0">
<thead>
<tr>
<th>网站</th>
<th>页面地址</th>
<th>作者</th>
</tr>
</thead>
<tbody>
<?php if(count($list)>0): ?>
<?php foreach($list as $value):?>
<tr>
<td><?php echo $value->p_site_code; ?></td>
<td><a href="<?php echo $value->p_url; ?>" target="_blank"><?php echo $value->p_url; ?></a></td>
<td><?php echo $value->p_author; ?></td>
</tr>
<?php endforeach;?>
<?php endif;?>
</tbody>
</table>
</div>
</div>
<div class="clear"></div>
</div>