|
|
|
22년 전
|
조회 441
|
|
|
|
22년 전
|
조회 702
|
|
|
|
22년 전
|
조회 554
|
|
|
|
22년 전
|
조회 503
|
|
|
|
22년 전
|
조회 662
|
|
|
|
22년 전
|
조회 516
|
|
|
|
22년 전
|
조회 472
|
|
|
|
22년 전
|
조회 799
|
|
|
|
22년 전
|
조회 589
|
|
|
|
22년 전
|
조회 655
|
|
|
|
22년 전
|
조회 493
|
|
|
|
22년 전
|
조회 542
|
|
|
|
22년 전
|
조회 423
|
|
|
|
22년 전
|
조회 520
|
|
|
|
22년 전
|
조회 499
|
|
|
|
22년 전
|
조회 401
|
|
|
|
22년 전
|
조회 477
|
|
|
|
22년 전
|
조회 386
|
|
|
|
22년 전
|
조회 449
|
|
|
|
22년 전
|
조회 431
|
댓글 2개
<!-- 접속 회원 표시 시작 -->
<table width=100% border=0 cellpadding=1 cellspacing=0 class=tablebg>
<tr>
<td>
<table width=100% bgcolor=#ffffff cellpadding=0 cellspacing=0>
<tr>
<td align=center bgcolor=FFFFFF>
<table width=100%>
<?
include "./$cfg[bbs_dir]/gblayer.php";
$sql = " select a.mb_id, b.mb_name, b.mb_icon, b.mb_open, a.lo_ip
from $cfg[table_login] a
left join $cfg[table_member] b on (a.mb_id = b.mb_id)
where a.mb_id <> ''
order by a.lo_ip ";
$result = sql_query($sql);
for ($i=0; $row=mysql_fetch_array($result); $i++) {
$tmp_name = gblayer($row[mb_id], $row[mb_name], $row[mb_email], $row[mb_homepage], $row[mb_open]);
echo "<tr><td align=center style='color:777777;' height=20>$tmp_name </td></tr>";
}
mysql_free_result($result);
if ($i==0)
echo "<tr><td align=center><font color=222222>없음</font></td></tr>";
?>
</table>
</td>
</table>
</td>
</tr>
</table>
<!-- 접속 회원 표시 끝 -->