커피와 개발자

[PHP] Checkbox 배열값 가져오기 본문

웹개발/PHP

[PHP] Checkbox 배열값 가져오기

광박이 2010. 5. 19. 12:20
728x90
HTML 페이지:
<input type="checkbox" name="modifyChk[]" value="농구" />
<input type="checkbox" name="modifyChk[]" value="축구" />
<input type="checkbox" name="modifyChk[]" value="배구" />
<input type="checkbox" name="modifyChk[]" value="야구" />

PHP 페이지 :
for($i=0; $i<count($_POST['modifyChk']); $i++){
$position = $_POST['modifyChk'];
echo $position[i];
}
728x90

'웹개발 > PHP' 카테고리의 다른 글

[PHP]explode  (0) 2010.05.25
[PHP] 배열 함수 매뉴얼  (0) 2010.05.20
페이징 처리하기  (0) 2010.05.07
치환 함수 str_replace()  (0) 2009.09.28
파일 다운로드 페이지  (0) 2009.09.08
Comments