I have the following php array:
$postFields = array(
'email' => '[email protected]',
'token' => '123456',
/*INSERIR AQUI*/
);
Where it says "insert here", I need to insert additional information dynamically, which would be the following:
'item1' => 'Nome1'
'valor1' => '01',
'item2' => 'Nome2'
'valor2' => '02',
.....
'itemN' => 'NomeN',
'valorN' => '999'
. How do I add these values into the array above?