2
How to transform an array similar to this and Strings to write each line in the Mysql database.
I will only need the data of each array ( date, site and Status )
print_r($arrayOut);
Array
(
[1] => Array
(
[date] => 15/12/2016 17:11
[site] => AC SAO MIGUEL DOS CAMPOS - Sao Miguel Dos Campos/AL
[status] => Endereço insuficiente para entrega
[isOrigin] => 1
)
[2] => Array
(
[date] => 15/12/2016 17:11
[site] => Objeto em devolução ao remetente
[status] => Endereço insuficiente para entrega
[isOrigin] =>
)
[3] => Array
(
[date] => 15/12/2016 09:53
[site] => Sao Miguel Dos Campos/AL
[status] => Saiu para entrega ao destinatário
[isOrigin] => 1
)
[4] => Array
(
[date] => 09/12/2016 17:08
[site] => AGF JARDIM MARILIA - Sao Paulo/SP
[status] => Postado
[isOrigin] => 1
)
)
Isn’t it easier to use the key? ex
$array[0]['date']
or within a foreach$array['date']
– rray
You’re using PDO, how you’re connecting??
– Miguel