我有一个包含大约 50 个输入复选框的页面,其中
name="form[]"
我需要我的 php 脚本能够遍历所有复选框,并且检查和提交哪些复选框我需要放入一个变量中,以便我可以存储给定的表单。
这是我的循环:
if ($this->input->post('action') == 'additional') { // Checks if radio button was checked
foreach ($this->input->post('form') as $forms) { // If above ^^^ is true loop through form[]
$givenforms = ', '.$forms.''; // What ever form[] is in the array assign them to the givenforms variable
}
$comments = 'This student was given'.$givenforms.''; // The comment I want to store in the database
}
这有效,但仅适用于一种形式(复选框)。如果由于某种原因我的客户需要给学生所有 50 份表格,我想要 $comment = 'This student was given ......................... ......................(所有 50 种表格)'
任何链接或提示将不胜感激。