250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 오라클
- mariadb
- 플러그인
- #eclipse
- 스프링
- 소스코드 맵
- html
- 환경설정
- 이클립스
- log4j2
- Like
- Oracle
- #자바가상머신
- #JVM
- #java
- Spring
- 인텔리제이
- 설치
- CodeGlance
- Eclipse
- #이클립스
- IntelliJ
- #오라클
- Plugins
- #자바
- 스프링부트
- #Oracle
- 설정
- log4j
- springboot
Archives
- Today
- Total
커피와 개발자
[PHP] Checkbox 배열값 가져오기 본문
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++){
<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];
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