<input type="checkbox" name="value[]" value="2" />2
<input type="checkbox" name="value[]" value="3" />3
<input type="checkbox" name="value[]" value="4" />4
.
.
.
위와 같이 name 부분에 [] 배열 형태를 적어주면, php 파일에서는

$values = $_POST['value'] ; // Array 로 받을수 있다.

print_r($values);
//
// Array([0]=>2,[1]=>3,[2]=>4)

'프로그래밍 > PHP' 카테고리의 다른 글

PHP 정규식 한글만 추출  (0) 2009/06/14
checkbox form 에서 값 넘겨받기  (0) 2009/06/07
PHP로 달력만들기  (0) 2009/05/15
PHP 1부터 100 사이의 소수 구하기  (0) 2009/05/09
Posted by 웹눈