#328 상품문의 답변 sms 이메일 알림 추가

This commit is contained in:
chicpro
2013-11-21 16:35:19 +09:00
parent 8b216869f1
commit 2d02784941
4 changed files with 55 additions and 0 deletions

View File

@ -50,6 +50,18 @@ $qstr = 'page='.$page.'&sort1='.$sort1.'&sort2='.$sort2;
<th scope="row">이름</th>
<td><?php echo $name; ?></td>
</tr>
<?php if($iq['iq_email']) { ?>
<tr>
<th scope="row">이메일</th>
<td><?php echo get_text($iq['iq_email']); ?></td>
</tr>
<?php } ?>
<?php if($iq['iq_hp']) { ?>
<tr>
<th scope="row">휴대폰</th>
<td><?php echo get_text($iq['iq_hp']); ?></td>
</tr>
<?php } ?>
<tr>
<th scope="row"><label for="iq_subject">제목</label></th>
<td><input type="text" name="iq_subject" value="<?php echo conv_subject($iq['iq_subject'],120); ?>" id="iq_subject" required class="frm_input required" size="95"></td>