0

codeigniter 的新手,并试图让我了解从用户表单更新检查的行。

我的视图生成一个带有 MySQL 数据的表单,如下所示:

<?php 
    echo form_open('masterdata/update_customers');
?>

<table>
    <tr>
        td>&nbsp;</td><td>Customer Name</td><td>postalcode</td>
    <tr>

<?php if(isset($records)) : foreach ($records as $row) : ?>
    <tr>
        <td>
            <input type=checkbox name="editcustomer[]" id="editcustomer[]" value="<?php echo $row->id ?>">
        </td>
        <td>
            <input type="text" name="customername_<?php echo $row->id ?>" id="customername_<?php echo $row->id ?>" value="<?php echo $row->customer_name ; ?>" >
        </td>
        <td>
            <input type="text" name="postalcode_<?php echo $row->id ?>" id="postalcode_<?php echo $row->id ?>" value="<?php echo $row->postalcode ; ?>" >
        </td>
    </tr>
<?php endforeach ; ?>
    </table>
<input type="submit" value="Update Selected">
<?php else : ?>
<h2> No Records Found</h2>
<?php endif; ?>
<?php echo form_close(); ?>

当我获得所有输入字段的唯一名称和值时,这非常有效。

我现在的问题是尝试将选定的复选框和值传递给 codeigniter 并让它更新每一行。

传统上我会使用foreach($_POST['editcustomer'] as $editcustomer){但无法在codeigniter中解决这个问题。

我的控制器功能,update_customers现阶段非常基础:

function update_customers()
    {

        $this->form_validation->set_rules("customer_name","`Customer Name`","required|min_length[6]|xss_clean");
        $this->form_validation->set_rules("postalcode","`Postal Code`","required|xss_clean|min_length[6]");


        if ($this->form_validation->run() == FALSE){
            $data["message"]="";

            $data['title']="Master Data Home Page";
            $this->load->view("master_data/view_master_data_header",$data);
            $this->load->view("master_data/view_master_data_nav");
            $this->load->view("master_data/view_content_master_data_manage_customers");
            $this->load->view("master_data/view_master_data_footer");
        } else {

        $data = array(
            'customer_name' =>  $this->input->post('customer_name'),
            'postalcode' =>  $this->input->post('postalcode'),
            );

        $this->model_master_data->update_customer_records($data);

        $this->customers_updated();
        }
    }

我的模型功能update_customer_records是:

function update_customer_records($data)
{

        $this->db->where('id',$this->input->post('id'));
    $this->db->update('customers',$data);


}

我知道这里有很多缺失,比如只处理检查的行。但不知道如何添加它。其次,根据我的观点,我的唯一名称和 ID 正在生成: name="customername_<?php echo $row->id ?>" id="customername_<?php echo $row->id ?>"

如何让更新应用于唯一的表单输入名称?我需要将前缀 customername_ 和 postalcode_ 附加到 input->post(?) 值吗?

任何指导或帮助将不胜感激。提前一百万谢谢。

4

1 回答 1

1

使用 CodeIgniter,如果必须获取复选框值,则必须使用 $this->input->post('name_of_your_checkbox')。它返回一个数组。

例如,如果您在视图中有它:

<input type="checkbox" name="editcustomer[]" value="1" />
<input type="checkbox" name="editcustomer[]" value="2" />
<input type="checkbox" name="editcustomer[]" value="3" />

从控制器:

public function update_customers() {

    $editcustomer = $this->input->post('editcustomer');

}

返回:

Array {
    [0] => 1
    [1] => 2
    [2] => 3
}
于 2013-03-02T16:03:14.097 回答