사용자: 테이블 스타일, 현재접속자, 최근게시물
This commit is contained in:
@ -2,12 +2,12 @@
|
||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
?>
|
||||
|
||||
<table>
|
||||
<table id="current_connect_tbl">
|
||||
<caption>현재접속자 목록</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">번호</th>
|
||||
<th scope="col">닉네임 혹은 아이피</th>
|
||||
<th scope="col">이름</th>
|
||||
<th scope="col">링크</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@ -21,8 +21,8 @@ for ($i=0; $i<count($list); $i++) {
|
||||
else $display_location = $location;
|
||||
?>
|
||||
<tr>
|
||||
<td><?=$list[$i]['num']?></td>
|
||||
<td><?=$list[$i]['name']?></td>
|
||||
<td class="td_num"><?=$list[$i]['num']?></td>
|
||||
<td class="td_name"><?=$list[$i]['name']?></td>
|
||||
<td><?=$display_location?></td>
|
||||
</tr>
|
||||
<?
|
||||
|
||||
@ -18,17 +18,16 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
<?
|
||||
for ($i=0; $i<count($list); $i++)
|
||||
{
|
||||
$gr_subject = cut_str($list[$i][gr_subject], 10);
|
||||
$bo_subject = cut_str($list[$i][bo_subject], 10);
|
||||
$wr_subject = get_text(cut_str($list[$i][wr_subject], 40));
|
||||
$gr_subject = cut_str($list[$i][gr_subject], 20);
|
||||
$bo_subject = cut_str($list[$i][bo_subject], 20);
|
||||
$wr_subject = get_text(cut_str($list[$i][wr_subject], 80));
|
||||
?>
|
||||
<tr>
|
||||
<td><a href="./new.php?gr_id=<?=$list[$i][gr_id]?>"><?=$gr_subject?></a></td>
|
||||
<td><a href="./board.php?bo_table=<?=$list[$i][bo_table]?>"><?=$bo_subject?></a></td>
|
||||
<td class="td_group"><a href="./new.php?gr_id=<?=$list[$i][gr_id]?>"><?=$gr_subject?></a></td>
|
||||
<td class="td_board"><a href="./board.php?bo_table=<?=$list[$i][bo_table]?>"><?=$bo_subject?></a></td>
|
||||
<td><a href="<?=$list[$i][href]?>"><?=$list[$i][comment]?><?=$wr_subject?></a></td>
|
||||
<td><?=$list[$i][name]?></td>
|
||||
<td><?=$list[$i][datetime2]?></td>
|
||||
<!-- <a href="javascript:;" onclick="document.getElementById('mb_id').value={$list[$i][mb_id]}';">·</a> -->
|
||||
<td class="td_name"><div><?=$list[$i][name]?></div></td>
|
||||
<td class="td_datetime"><?=$list[$i][datetime2]?></td>
|
||||
</tr>
|
||||
<? } ?>
|
||||
|
||||
@ -38,7 +37,7 @@ for ($i=0; $i<count($list); $i++)
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<div id="pg">
|
||||
<div class="pg">
|
||||
<?=$write_pages?>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user