1
I have the following array()
Array
(
    [nome_responsavel] => 
    [telefone] => 
    [email] => 
    [dependentenome] => Array
        (
            [0] => qqq
            [1] => qqq
            [2] => qqqq
        )
    [dependentedata] => Array
        (
            [0] => 2017-01-18
            [1] => 2017-01-04
            [2] => 2017-01-06
        )
)
I need to make an Insert as follows
INSERT INTO tabela (nome, data) VALUES ('nome', 'data');
How can I do this, since I have an array with two different columns?
Exactly that, very Thanks!
– Sr. André Baill