write.skin.php 사라지는 input질문입니다.
본문
견적 요청 게시판은 관리자만 답변이 가능합니다.
관리자로 로그인 후 답변을 누르면 이름 비밀번호 이메일이 input이 사라진 영역에 그대로 남아있습니다.
이름 비밀번호 이메일은 text입니다.
관리자가 답변을 남길 때 이 text를 사라지게 할 수 있는지 궁금합니다.
if (관리자레벨 = 10) {이름.style.display = none;}
초보여서 어떻게 해야하는지 모르겠습니다. 답변 부탁드립니다.
답변 2
<?php if ($is_name) { ?>
<div style="display:inline-block; margin:5px 0 0 0;"><span>이름</span>
<div style="margin-top:3px;">
<label for="wr_name" class="sound_only">이름<strong>필수</strong></label>
<input style="width:180px; margin-right:1px;" tabindex="2" type="text" name="wr_name" value="<?php echo $name ?>" id="wr_name" required class="frm_input required" placeholder="이름" title="이름">
</div>
</div>
<?php } ?>
<?php if ($is_password) { ?>
<div style="display:inline-block; margin-top:5px;"><span>비밀번호</span>
<div style="margin-top:3px;">
<label for="wr_password" class="sound_only">비밀번호<strong>필수</strong></label>
<input style="width:180px; margin-right:1px;" tabindex="3" type="password" name="wr_password" id="wr_password" <?php echo $password_required ?> class="frm_input <?php echo $password_required ?>" title="비밀번호">
</div>
</div>
<?php } ?>
<div style="display:inline-block; margin-top:5px;"><span>회사명</span>
<div style="margin-top:3px;">
<input style="width:180px; margin-right:1px;" tabindex="4" type="text" name="wr_1" value="<?php echo $write['wr_1'] ?>" id="wr_1" required class="frm_input required" size="20" placeholder="회사명" title="회사명">
</div>
</div>
<?php if ($is_email) { ?>
<div style="display:inline-block; margin-top:5px;"><span>이메일</span>
<div style="margin-top:3px;">
<label for="wr_email" class="sound_only">이메일</label>
<input style="width:180px;" tabindex="5" type="text" name="wr_email" value="<?php echo $email ?>" id="wr_email" required class="frm_input email required" placeholder="이메일" title="이메일">
</div>
</div>
<?php } ?>
소스가 있어야 도와드릴 수 있을듯 한데요..
if($is_admin) echo"style='display:none'";
이렇게 하실려는 건가요?
그냥 텍스트를 표기 안하는 방법도 있습니다.
if(!$is_admin) echo"이름";