I am currently trying to convert this 2D array into a sentence, this is the result I'm expecting :
From :
Array
(
[NUM] => Array
( [0] => 101
[1] => 102
[2] => 103
...
)
[NOM] => Array
( [0] => LEPETIT
[1] => DURAND
[2] => DUPONT
...
)
[PRENOM] => Array
( [0] => Lukos
[1] => Pierre
[2] => Thiery
...
)
[...]
)
Printed text I want :
NUM:101 NOM:LEPETIT PRENOM:Lukos ...
NUM:102 NOM:DURAND PRENOM:Pierre ...
...
I tried using multiple foreach but I can't manage to use one 'echo' using the values.