0

複数選択フィールドを持つフォームがあります。各企業に 3 つのカテゴリを選択しますが、データベースに追加されるのは 1 つだけです。

データベースに 3 つのカテゴリの配列を追加するにはどうすればよいですか? 結合テーブルを使用して、会社に複数のカテゴリを追加します。

私のテーブル構造:

companies
---------
companyid
companyname
etc etc

categories
---------
categoryid
categoryname

companycategories
----------------
companycategoryid
categoryid
companyid

私のコントローラー:

function update()
{
    $id = $this->uri->segment(3);
    $data = array(
       'Bedrijfsnaam' => $this->input->post('Bedrijfsnaam'),
       'Postcode' => $this->input->post('Postcode'),
       'Plaats' => $this->input->post('Plaats'),
       'Telefoonnummer' => $this->input->post('Telefoonnummer'),
       'Email' => $this->input->post('Email'),
       'Website' => $this->input->post('Website'),
       'Profiel' => $this->input->post('Profiel'),
       'Adres' => $this->input->post('Adres'),
    );
    if($this->input->post('logo')) { $data['logo'] = $this->input->post('logo'); }
    $this->members_model->updatebedrijf($id, $data);

    $b = $this->session->userdata('idbedrijven');
    redirect("members/$b");
}   

私のモデル:

function updatebedrijf($id, $data)
{

        $this->db->where('idbedrijven', $id);
        $this->db->update('bedrijven', $data); 

        $to_bedrijfcategorieen2['idcategorieen'] = $this->input->post('categorieen');
        $this->insert_bedrijfcat1($to_bedrijfcategorieen2); 

}

function insert_bedrijfcat1($data1) 
{ 
    echo '<pre>';
    print_r($data1);
    echo '</pre>';

    $id = $this->uri->segment(3); 
    $this->db->where('idbedrijven', $id);
    $this->db->update('bedrijfcategorieen', $data1); 

    return $this->db->affected_rows() >= 1 ? TRUE : FALSE; 
}

私のフォーム:

<tr>
<td><?= form_label('Categorieen'); ?></td>
<td><?= form_multiselect('categorieen[]', $opties, key($selectie)); ?></td>
</tr>

print_r($data1); の出力 私にこれを与える:

Array
(
    [idcategorieen] => Array
        (
            [0] => 11
            [1] => 12
            [2] => 13
        )

)

それが明確であることを願っています。

4

1 に答える 1

0

Update one to many relation技はここまで

 function insert_bedrijfcat1($data1) 
{     

$delete = $this->db->query("DELETE FROM `bedrijfcategorieen` WHERE `idbedrijven` = '" . $id. "'");

$id = $this->uri->segment(3); 

foreach($data1['idcategorieen'] as $cat_id){

$this->db->query("INSERT INTO `bedrijfcategorieen` (`idbedrijven`,`idcategorieen` ) VALUES ('".$id."','".$cat_id."')");

 }
 }
于 2013-05-30T12:03:40.240 に答える