在php中checkbox復選框我們以一般是使用數組形式來做的,這樣在php 中獲取復選框值時我們會以數組形式存儲的,所以只要遍歷數組即可實現。 代碼如下 復制代碼
<html>
<head>
<title>獲取復選框的值</title>
</head>
<body>
<form action="result.php" method="POST">
<input type="checkbox" name="year[]" value="1">1
<input type="checkbox" name="year[]" value="2">2
<input type="checkbox" name="year[]" value="3">3 <br>
<input type="submit" value="提交" />
</form>
</body>
</html>
php代碼
代碼如下 復制代碼<?php
foreach($_POST['year'] as $item){
echo $item."<br>";
}
?>