쇼핑몰관리자: #15 쇼핑몰관리 배송업체관리 배송업체 입력/수정 표준화 및 스타일 완료

This commit is contained in:
whitedot
2013-04-17 20:19:16 +09:00
parent 5b43eea88c
commit a60e883521

View File

@ -4,7 +4,9 @@ include_once('./_common.php');
auth_check($auth[$sub_menu], "w");
$html_title = '배송회사';
$html_title = '배송업체';
$g4['title'] = $html_title;
if ($w == "u") {
$html_title .= ' 수정';
$readonly = ' readonly';
@ -19,41 +21,40 @@ else
$dl['dl_url'] = "http://";
}
$g4['title'] = $html_title;
include_once (G4_ADMIN_PATH.'/admin.head.php');
?>
<form name="fdeliverycodeform" action="./deliverycodeformupdate.php" method="post">
<input type="hidden" name="w" value="<? echo $w ?>">
<input type="hidden" name="dl_id" value="<? echo $dl_id ?>">
<input type="hidden" name="w" value="<?=$w?>">
<input type="hidden" name="dl_id" value="<?=$dl_id?>">
<section class="cbox">
<h2>배송회사 입력 수정</h2>
<h2><?=$html_title?></h2>
<table class="frm_tbl">
<colgroup>
<col class="grid_3">
<col class="grid_15">
<col>
</colgroup>
<tbody>
<tr >
<th scope="row"><label for="dl_company">배송회사명</label></th>
<tr>
<th scope="row"><label for="dl_company">배송업체명</label></th>
<td>
<input type="text" name="dl_company" value="<? echo stripslashes($dl['dl_company']) ?>" id="dl_company" required class="frm_input">
<input type="text" name="dl_company" value="<?=stripslashes($dl['dl_company']) ?>" id="dl_company" required class="frm_input">
</td>
</tr>
<tr >
<tr>
<th scope="row"><label for="dl_url">화물추적 URL</label></th>
<td>
<input type="text" class="frm_input" name="dl_url" value="<? echo stripslashes($dl['dl_url']) ?>" id="dl_url" size="100">
<input type="text" class="frm_input" name="dl_url" value="<?=stripslashes($dl['dl_url']) ?>" id="dl_url" size="100">
</td>
</tr>
<tr >
<tr>
<th scope="row"><label for="dl_tel">고객센터 전화</label></th>
<td>
<input type="text" class="frm_input" name="dl_tel" value="<? echo stripslashes($dl['dl_tel']) ?>" id="dl_tel">
<input type="text" class="frm_input" name="dl_tel" value="<?=stripslashes($dl['dl_tel']) ?>" id="dl_tel">
</td>
</tr>
<tr >
<tr>
<th scope="row"><label for="dl_order">출력 순서</label></th>
<td>
<?=help("셀렉트박스에서 출력할 때 순서를 정합니다.\n\n숫자가 작을수록 상단에 출력합니다.");?>
@ -62,12 +63,13 @@ include_once (G4_ADMIN_PATH.'/admin.head.php');
</tr>
</tbody>
</table>
<div class="btn_confirm">
<input type="submit" value="확인" class="btn_submit" accesskey="s">
<a href="./deliverycodelist.php">목록</a>
</div>
</section>
<div class="btn_confirm">
<input type="submit" value="확인" class="btn_submit" accesskey="s">
<a href="./deliverycodelist.php">목록</a>
</div>
</form>
<?