使用codeigniter中的where子句更新多行

时间:2015-06-08 08:17:17

标签: php codeigniter codeigniter-2

我有一个来自数据库的记录列表,请参阅附件。如何使用学生ID为每条记录插入一个桶号(参见最左边的栏目)。每条记录都有一个输入字段(参见最右边的列)。 enter image description here

以下是我的观点:

    <?php $attributes = array('id' => 'VATformAdd', 'name' => 

'VATformAdd', 'autocomplete' => 'off'); echo form_open('report/addVATno', $attributes);?>
<fieldset>
<legend>Income By Student Admission</legend>
<table class="">
<thead>
<tr>
<th width="15%">Student ID</th>
<th width="15%">Student Form No</th>
<th width="15%">Course</th>
<th width="20%">Student Name</th>
<th width="15%">Admitted by</th>
<th width="10%">Amount</th>
<th width="10%">VAT Serial No</th>
</tr>
</thead>

<tbody>
<?php
    if (isset($addmission_income)) {
        foreach ($addmission_income as $addmissionincome) {
?>
<tr>
    <td><?php echo $addmissionincome->student_id;?></td>
    <td><?php echo $addmissionincome->student_form_no;?></td>
    <td><?php echo $addmissionincome->course_name;?></td>
    <td><?php echo $addmissionincome->student_full_name;?></td>
    <td><?php echo user_profile_name($addmissionincome->student_added_by); ?></td>
    <td><?php echo $addmissionincome->student_fee_paid;?></td>
    <td><input type="text" name="vatno[<?php echo $addmissionincome->student_id;?>]" class="width-100"/></td>
<?php       
        }
?>
</tr>
<?php       
    }
?>
</tbody>
</table>

<p>
<input id="submit" name="submit" type="submit"  value="Add VAT Number" />
</p>

</fieldset>
<?php echo form_close();?>

这是我的控制器:

function addVATno(){
        $studentid = $this->input->post('studentid');
        foreach($studentid as $a){
            if($val[$a]!=''){
                $this->report_mdl->addVATno($a);
            }
        }
    }

这是模特:

function addVATno($a){
        $val = $this->input->post('vatno');
        $updatevatsl = array( 
            'dupVATserial_no' => $val);
        $this->db->where('student_id', $a);
        $query = $this->db->update('data_student_master', $updatevatsl);
        return $query;
    }

2 个答案:

答案 0 :(得分:1)

使用隐藏的student_id创建您的视图文件,如:

<input type="hidden" name="student_id[]" value="<?php echo $addmissionincome->student_id;?>"/>

vatno字段:

<input type="text" name="vatno[]" class="width-100"/>

将以下内容添加到控制器中将执行您需要的所有操作(无需在模型中放置任何代码):

  $student_id = $this->input->post('student_id');
  $vatno = $this->input->post('vatno');

  for ($i = 0; $i < count($student_id); $i++) {
        $sm_data[] = array(
            'vatno' => $vatno[$i],
            'student_id' => $student_id[$i]
        );
  }

$this->db->update_batch('data_student_master', $sm_data, 'student_id');

注意:最好将db调用移到模型中以遵守MVC约定。

答案 1 :(得分:0)

您的问题是您没有从POST中提取正确的值。

您没有在表单的任何位置提交学生ID,因此我无法看到您如何通过POST访问它。

您还尝试从POST访问'vatno'以将其插入到数据库中,但POST中的'vatno'是一个数组。

因为您在表单中使用学生ID作为数组键,所以您可以从同一个数组中访问要更新的学生ID和增值税号。在您的控制器中,您可以执行以下操作:

function addVATno(){
    //vatnos is an array, the key is the student id
    $vatnos = $this->input->post('vatno');
    foreach($vatnos as $key=>$vatno){
        $this->report_mdl->addVATno($key, $vatno);
    }
}

然后在你的模型中,你只需要:

function addVATno($studentid, $vatno){
    $updatevatsl = array( 
        'dupVATserial_no' => $vatno
    );
    $this->db->where('student_id', $studentid);
    $query = $this->db->update('data_student_master', $updatevatsl);
    return $query;
}