사용자: 폼메일, 쪽지쓰기, 쪽지보기, 자기소개

This commit is contained in:
whitedot
2013-01-08 11:23:02 +09:00
parent f2ffc6139c
commit 0785367b30
5 changed files with 178 additions and 147 deletions

View File

@ -2,40 +2,42 @@
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<h1><?=$mb_nick?>님의 프로필</h1>
<div id="profile" class="new_win">
<h1><?=$mb_nick?>님의 프로필</h1>
<table>
<tbody>
<tr>
<th scope="row">회원권한</th>
<td><?=$mb[mb_level]?></td>
</tr>
<tr>
<th scope="row">포인트</th>
<td><?=number_format($mb[mb_point])?></td>
</tr>
<? if ($mb_homepage) { ?>
<tr>
<th scope="row">홈페이지</th>
<td><a href="<?=$mb_homepage?>" target="_blank"><?=$mb_homepage?></a></td>
</tr>
<? } ?>
<tr>
<th scope="row">회원가입일</th>
<td><?=($member[mb_level] >= $mb[mb_level]) ? substr($mb[mb_datetime],0,10) ." (".$mb_reg_after." 일)" : "알 수 없음"; ?></td>
</tr>
<tr>
<th scope="row">최종접속일</th>
<td><?=($member[mb_level] >= $mb[mb_level]) ? $mb[mb_today_login] : "알 수 없음";?></td>
</tr>
</tbody>
</table>
<table class="frm_tbl">
<tbody>
<tr>
<th scope="row">회원권한</th>
<td><?=$mb[mb_level]?></td>
</tr>
<tr>
<th scope="row">포인트</th>
<td><?=number_format($mb[mb_point])?></td>
</tr>
<? if ($mb_homepage) { ?>
<tr>
<th scope="row">홈페이지</th>
<td><a href="<?=$mb_homepage?>" target="_blank"><?=$mb_homepage?></a></td>
</tr>
<? } ?>
<tr>
<th scope="row">회원가입일</th>
<td><?=($member[mb_level] >= $mb[mb_level]) ? substr($mb[mb_datetime],0,10) ." (".$mb_reg_after." 일)" : "알 수 없음"; ?></td>
</tr>
<tr>
<th scope="row">최종접속일</th>
<td><?=($member[mb_level] >= $mb[mb_level]) ? $mb[mb_today_login] : "알 수 없음";?></td>
</tr>
</tbody>
</table>
<section>
<h2><?=$mb_nick?>님의 자기소개</h2>
<p><?=$mb_profile?></p>
</section>
<section>
<h2><?=$mb_nick?>님의 자기소개</h2>
<p><?=$mb_profile?></p>
</section>
<div class="btn_window">
<a href="javascript:window.close();">창닫기</a>
<div class="btn_window">
<a href="javascript:window.close();">창닫기</a>
</div>
</div>