Welcome Guest, Not a member yet? Register   Sign In
Help with a database insert
#10

[eluser]adityamenon[/eluser]
So, you are generating hidden input fields for every category a dealer has products in (checkboxes and javascript?).

Then, you want to store the dealer's ID, and the categories he deals in. Now I get it.

Try this:

Code:
$categorias = array(
$this->input->post('telefonia'),
$this->input->post('computo'),
$this->input->post('fotografia'),
$this->input->post('electronica'),
$this->input->post('instrumentos_musicales'),
$this->input->post('entretenimiento'),
$this->input->post('reparacion'),
);
        
        
        foreach ($categorias as $value):
        $data = array(
               'localID' => $this->input->post('localID'),
               'categoriaID' => $value //you were doing this step twice
            );

        $this->db->insert('categoriasLocatarios', $data);
        endforeach;
        
        redirect('clientes_corporativos');

Let me know if there's more errors Big Grin


Messages In This Thread
Help with a database insert - by El Forum - 06-21-2011, 09:40 AM
Help with a database insert - by El Forum - 06-21-2011, 10:01 AM
Help with a database insert - by El Forum - 06-21-2011, 10:02 AM
Help with a database insert - by El Forum - 06-21-2011, 10:10 AM
Help with a database insert - by El Forum - 06-21-2011, 10:11 AM
Help with a database insert - by El Forum - 06-21-2011, 10:14 AM
Help with a database insert - by El Forum - 06-21-2011, 10:18 AM
Help with a database insert - by El Forum - 06-21-2011, 10:24 AM
Help with a database insert - by El Forum - 06-21-2011, 10:28 AM
Help with a database insert - by El Forum - 06-21-2011, 10:30 AM
Help with a database insert - by El Forum - 06-21-2011, 10:34 AM
Help with a database insert - by El Forum - 06-21-2011, 10:36 AM
Help with a database insert - by El Forum - 06-21-2011, 10:39 AM
Help with a database insert - by El Forum - 06-21-2011, 10:41 AM
Help with a database insert - by El Forum - 06-21-2011, 10:59 AM
Help with a database insert - by El Forum - 06-21-2011, 11:36 AM
Help with a database insert - by El Forum - 06-21-2011, 12:05 PM
Help with a database insert - by El Forum - 06-22-2011, 01:01 AM



Theme © iAndrew 2016 - Forum software by © MyBB