Well, I need your help. I have the following fixed structure in php:
'labels' => array('Jan','Fev','Mar')......
But I want to populate these internal values of the array dynamically, ie I'm going to get the bank some random months and use it in there. But I try to do this:
$meu_array = array();
// preencho o array
'labels' => array($meu_array);
But it does not work. How do I do this?