사용자: 테이블 스타일, 현재접속자, 최근게시물

This commit is contained in:
whitedot
2013-01-04 12:00:10 +09:00
parent 4bf4bb1884
commit 1caf2654a9
5 changed files with 53 additions and 24 deletions

View File

@ -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>
<?