홈페이지 관리자모드입니다.
접속자 정보
홈페이지 관리자모드입니다.
최근게시물
- 최근게시물 (최근 10일)

-
<%
If SESSION("ss_g_num") = "1" then
sql = "select a_num, a_bbsname, b_num, b_subject, b_regdate, b_name from board_total where b_regdate >= '"&(Date()-10)&"' order by b_regdate desc"
Else '총관리자가 아닐경우 내가 관리권한있는 게시판만 가져오기
sql = "select a_num, a_bbsname, b_num, b_subject, b_regdate, b_name from board_total where b_regdate >= '"&(Date()-10)&"' and ( a_num in (select a_num from board_config where a_ad_cms_id like '%"&SESSION("ss_m_id")&"%') or a_num in (select a_num from board_access where g_num = '" & SESSION("ss_g_num") & "' and bl_ad_cms = 'Y') ) order by b_regdate desc"
End if
Set row = dbcon.execute( sql )
If Not( row.bof Or row.eof ) Then
Do Until row.eof
a_num = row("a_num")
a_bbsname = row("a_bbsname")
b_num = row("b_num")
If a_num = "99755066" Or a_num = "79629137" then
b_subject = row("b_name")
Else
b_subject = row("b_subject")
End if
b_subject_str = remove_tags( b_subject )
b_subject_str = StringToHTML( b_subject_str, 50, false )
b_regdate = Left(row("b_regdate"), 10 )
b_regdate2 = Right(b_regdate, 5)
%>
- [<%=a_bbsname%>] <%=b_subject_str%><%=get_newimg2(b_regdate, 1)%><%=b_regdate2%>
<%
row.movenext
Loop
End if
Set row = nothing
%>