3
I’m creating a PHP that creates Graphics using Google Charts, but I can’t supply the function with all the data in the array. When I print the function, instead of printing all the states of the array, it prints only the first one. Go on like I’m doing:
$query = "SELECT estado, count(*) as quantidade FROM tb_participacoes where id_campanha = ". $id_campanha ." GROUP BY estado";
$mostrar = mysql_query($query);
while ($produto = mysql_fetch_array($mostrar)) {
$valores = $produto['estado'];
$referencia = $produto['quantidade'];
}
$grafico = geraGrafico(500, 200, array($valores), array($referencia)) ;
Testing using
[]
after values, like this:$valores[] = $produto['estado'];
– Sergio