input 필드 따옴표 대응 코드 추가

This commit is contained in:
chicpro
2015-09-21 14:08:40 +09:00
parent 324f8ae08a
commit 3d78ef9d14
3 changed files with 5 additions and 5 deletions

View File

@ -100,7 +100,7 @@ if(!sql_query(" select pp_cash from {$g5['g5_shop_personalpay_table']} limit 1 "
<tbody>
<tr>
<th scope="row"><label for="pp_name">이름</label></th>
<td><input type="text" name="pp_name" value="<?php echo $pp['pp_name']; ?>" id="pp_name" required class="required frm_input"></td>
<td><input type="text" name="pp_name" value="<?php echo get_text($pp['pp_name']); ?>" id="pp_name" required class="required frm_input"></td>
</tr>
<tr>
<th scope="row"><label for="pp_price">주문금액</label></th>

View File

@ -69,7 +69,7 @@ $goods = $pp['pp_name'].'님 개인결제';
</tr>
<tr>
<th scope="row"><label for="pp_name">이름</label></th>
<td><input type="text" name="pp_name" value="<?php echo $pp['pp_name']; ?>" id="pp_name" required class="required frm_input"></td>
<td><input type="text" name="pp_name" value="<?php echo get_text($pp['pp_name']); ?>" id="pp_name" required class="required frm_input"></td>
</tr>
<tr>
<th scope="row"><label for="pp_email">이메일</label></th>
@ -77,7 +77,7 @@ $goods = $pp['pp_name'].'님 개인결제';
</tr>
<tr>
<th scope="row"><label for="pp_hp">휴대폰</label></th>
<td><input type="text" name="pp_hp" value="<?php echo $member['mb_hp']; ?>" id="pp_hp" class="frm_input"></td>
<td><input type="text" name="pp_hp" value="<?php echo get_text($member['mb_hp']); ?>" id="pp_hp" class="frm_input"></td>
</tr>
</tbody>
</table>

View File

@ -87,7 +87,7 @@ require_once('./'.$default['de_pg_service'].'/orderform.1.php');
</tr>
<tr>
<th scope="row"><label for="pp_name">이름<strong class="sound_only"> 필수</strong></label></th>
<td><input type="text" name="pp_name" value="<?php echo $pp['pp_name']; ?>" id="pp_name" required class="required frm_input"></td>
<td><input type="text" name="pp_name" value="<?php echo get_text($pp['pp_name']); ?>" id="pp_name" required class="required frm_input"></td>
</tr>
<tr>
<th scope="row"><label for="pp_email">이메일<strong class="sound_only"> 필수</strong></label></th>
@ -95,7 +95,7 @@ require_once('./'.$default['de_pg_service'].'/orderform.1.php');
</tr>
<tr>
<th scope="row"><label for="pp_hp">휴대폰</label></th>
<td><input type="text" name="pp_hp" value="<?php echo $member['mb_hp']; ?>" id="pp_hp" required class="required frm_input"></td>
<td><input type="text" name="pp_hp" value="<?php echo get_text($member['mb_hp']); ?>" id="pp_hp" required class="required frm_input"></td>
</tr>
</tbody>
</table>