1
Guys, I need help. I have the following fixed structure in php:
'labels' => array('Jan','Fev','Mar')......
But I want to fill these internal values of the array dynamically, or I will search the database for certain random months and use inside. But I try to do this:
$meu_array = array();
// preencho o array
'labels' => array($meu_array);
But it doesn’t work. How do I do it?