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

[eluser]Miguel Diaz[/eluser]
jejej that is true Smile

I tried this to check

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;
        
        echo $this->input->post('telefonia');
and it is sending me a white page with nothing but i check the url and it have the values on it

http://localhost:8888/clientes_corporati...&localID=1


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