43 lines
1.8 KiB
PHP
43 lines
1.8 KiB
PHP
<?php
|
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
|
?>
|
|
|
|
<!-- 스크랩 목록 시작 { -->
|
|
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
|
|
|
<div id="scrap" class="new_win">
|
|
<h1 id="new_win_title"><?php echo $g4['title'] ?></h1>
|
|
|
|
<table class="basic_tbl">
|
|
<caption>스크랩 목록</caption>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">번호</th>
|
|
<th scope="col">게시판</th>
|
|
<th scope="col">제목</th>
|
|
<th scope="col">보관일시</th>
|
|
<th scope="col">삭제</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php for ($i=0; $i<count($list); $i++) { ?>
|
|
<tr>
|
|
<td class="td_num"><?php echo $list[$i]['num'] ?></td>
|
|
<td class="td_board"><a href="<?php echo $list[$i]['opener_href'] ?>" target="_blank" onclick="opener.document.location.href='<?php echo $list[$i]['opener_href'] ?>'; return false;"><?php echo $list[$i]['bo_subject'] ?></a></td>
|
|
<td><a href="<?php echo $list[$i]['opener_href_wr_id'] ?>" target="_blank" onclick="opener.document.location.href='<?php echo $list[$i]['opener_href_wr_id'] ?>'; return false;"><?php echo $list[$i]['subject'] ?></a></td>
|
|
<td class="td_datetime"><?php echo $list[$i]['ms_datetime'] ?></td>
|
|
<td class="td_mng"><a href="<?php echo $list[$i]['del_href']; ?>" onclick="del(this.href); return false;">삭제</a></td>
|
|
</tr>
|
|
<?php } ?>
|
|
|
|
<?php if ($i == 0) echo "<tr><td colspan=\"5\" class=\"empty_table\">자료가 없습니다.</td></tr>"; ?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<?php echo get_paging($config['cf_write_pages'], $page, $total_page, "?$qstr&page="); ?>
|
|
|
|
<div class="btn_win">
|
|
<button type="button" onclick="window.close();">창닫기</button>
|
|
</div>
|
|
</div>
|
|
<!-- } 스크랩 목록 끝 -->
|