Q&A

문제 페이지 주소 비공개 (작성 후 5일 경과)

 예를 들어,  아래와 같은 소스에서, 기존의 name 값에서, 빈값으로 변경시, 

 name의 빈값이라도 가져올꺼라 생각했지만, 빈값은 가져오질 않네요 

 빈값이라면 빈값으로 업데이트를 돌려야 된다고 생각되는데 말이죠. 

 

<form class="x_form-horizontal" action=" /" method="post" id="iamport">
    <input type="hidden" name="module" value="iamport" />
    <input type="hidden" name="act" value="procIamportAdminInsertItem" />
 
 
<div class="x_control-group">
        <label class="x_control-label" for="lang_header_text">이름</label>
        <div class="x_controls">
            <input type="text" name="name" value="{$iam_item->name}" class="inputTypeText w200" />
            <p>고객님의 성함을 입력하세요</p>
        </div>
    </div>
<input type="submit" class="x_btn x_btn-primary" value="{$lang->cmd_registration}" accesskey="s" />

</form>

댓글 0