2016-06-18 5 views
0

라디오 버튼과 HTML 형식이 있습니다. 라디오 버튼의 값이 텍스트 일 ​​때 버튼은 0을 반환합니다. 값이 숫자 일 때 버튼은 rue 값을 반환합니다. 코드는 다음과 같습니다.라디오 버튼의 텍스트 값은 0으로 기본 설정됩니다.

<form method="POST" action='insert_per.php'> 
 
<table > 
 
\t \t \t <thead> 
 
      <tr> 
 
\t \t \t  
 
       <th class="center"><strong>Name</strong></th> 
 
       <th class="center"><strong>Email</strong></th> 
 
\t \t \t \t <?PHP if($_SESSION['user_group'] == 63){ 
 
\t \t \t \t echo '<th class="center"><strong>System Admin</strong></th>'; 
 
       echo '<th class="center"><strong>Admin</strong></th>'; 
 
\t \t \t \t echo '<th class="center"><strong>User</strong></th>'; \t \t \t \t \t \t \t \t \t 
 
\t \t \t \t } 
 
\t \t \t </tr> 
 
\t \t \t </thead> 
 
      <?php 
 
      if($stmt->execute()){ 
 
       // output data of each row 
 
       while($rows = $stmt->fetch(PDO::FETCH_ASSOC)){ ?> 
 
        <tr> 
 
\t \t \t \t \t  <td border="0" type="hidden" style="display:none;"><input type="hidden" name="hidden" value=<?php echo $rows['member_id']; ?></td> 
 
         <td class="center"><?php echo $rows['username']; ?></td> 
 
\t \t \t \t \t \t <td class="center"><?php echo $rows['email']; ?></td> 
 
\t \t \t \t \t \t <td class="center"><input type="radio" name="gp" value=11></input></td> 
 
\t \t \t \t \t \t \t 
 
\t \t \t \t   \t <td class="center"><button name="submit" type="submit">submit</button></td>   
 
          </tr>    
 
        <?php 
 
       } 
 
      } 
 
      ?> 
 
</table> 
 
    </form>

라디오 버튼 라디오 버튼의 값은 예를 들어, 텍스트 (11)로부터 변화 단 (11)의 velue 게시 "환영"라디오 버튼에서 0의 양식 게시 값

+0

값이 예 그들이에 따옴표 –

+0

에 있어야 따옴표 - 테스트 값은 예를 들어, 따옴표에 "welcome" –

+0

gp 입력에 따옴표가 없으며'$ rows [ 'member_id']'에 따옴표가 있고 입력이 닫히지 않으면 매우 놀랍습니다. –

답변

0

항상 value="something"을 따옴표로 묶습니다.

HTML 태그를 닫아야한다는 것을 기억하십시오. input 태그가 닫히지 않았습니다.

<input type="hidden" name="hidden" value="<?php echo $rows['member_id']; ?>" >