1

我有两张桌子usertreeview. 从我的注册表单中,我想将数据传递给这些表。例如,我想传递给usernameuser和表。对于单个表,我使用以下约定。sponsor IDtreeview

public function add_user()
{
    $data=array(
        'user_name'=>$this->input->post('fullname'),
        'sponsor_id'=>$this->input->post('sponsor_id'),
    );
    $this->db->insert('user',$data);
}

对于多张桌子我该怎么办?

4

1 回答 1

6

怎么样:

public function add_user()
{
    $data1 = array('user_name' => $this->input->post('fullname'));
    $data2 = array('sponsor_id' => $this->input->post('sponsor_id'));
    $this->db->insert('user', $data1);
    $this->db->insert('treeview', $data2);
}

在将数据插入数据库之前不要忘记清理数据。

于 2012-05-10T10:56:51.700 回答