downloadconfirm 을 download에 추가 필요 파일 함수 추가

This commit is contained in:
chicpro
2013-01-17 10:46:38 +09:00
parent e74797c847
commit fe78f5bc38
5 changed files with 61 additions and 51 deletions

24
bbs/confirm.php Normal file
View File

@ -0,0 +1,24 @@
<?
include_once('./_common.php');
include_once($g4['path'].'/head.sub.php');
?>
<article id="confirm_check">
<header>
<hgroup>
<h1><? echo $header; ?></h1> <!-- 수행 중이던 작업 내용 -->
<h2>아래 내용을 확인해 주세요.</h2>
</hgroup>
</header>
<p>
<? echo $msg; ?>
</p>
<a href="<? echo $url1; ?>">확인</a>
<a href="<? echo $url2; ?>">취소</a><br><br>
<a href="<? echo $url3; ?>">돌아가기</a>
</article>
<?
include_once($g4['path'].'/tail.sub.php');
?>