Я впервые использую JPgraph и пытаюсь получить результаты запросов mysql в массив для кода, основанного на примере bargradsmallex4.php. Я пробовал различный синтаксис, но не слишком знаком с mysql_fetch_array () и не могу заставить его вставлять данные в массив. Любая помощь будет оценена. Запрос был протестирован и дает результаты, поэтому это не сам запрос.
$sql= mysql_query('SELECT agency,current,sum(current)
FROM table2 WHERE MATCH(agency) AGAINST("health" IN BOOLEAN MODE) GROUP BY agency ');// We need some data
$datay = array();
while($row = mysql_fetch_array($sql))
$datay[] = array(
'current' => $row['sum(current)'],
);// Setup the graph.
$graph = new Graph(400,300);
$graph->SetScale("textlin");
$graph->img->SetMargin(25,15,25,25);
$graph->title->Set('"GRAD_VER"');
$graph->title->SetColor('darkred');
// Setup font for axis
$graph->xaxis->SetFont(FF_FONT1);
$graph->yaxis->SetFont(FF_FONT1);
// Create the bar pot
$bplot = new BarPlot($datay);
$bplot->SetWidth(0.6);
// Setup color for gradient fill style
$bplot->SetFillGradient("navy","lightsteelblue",GRAD_VER);
// Set color for the frame of each bar
$bplot->SetColor("navy");
$graph->Add($bplot);
// Finally send the graph to the browser
$graph->Stroke();
Я сделал некоторые изменения в вашем коде.
1- Установка алисы на сумму (текущую)
2- Установка цикла while и массива $ datay.
Пожалуйста, попробуйте, надеюсь, это даст вам необходимый результат.
$sql= mysql_query('SELECT agency,current,sum(current) as sum_of_current FROM table2 WHERE MATCH(agency) AGAINST("health" IN BOOLEAN MODE) GROUP BY agency');// We need some data
$datay = array();
while($row = mysql_fetch_array($sql)) {
$datay[] = $row['sum_of_current'];
}// Setup the graph.
$graph = new Graph(400,300);
$graph->SetScale("textlin");
$graph->img->SetMargin(25,15,25,25);
$graph->title->Set('"GRAD_VER"');
$graph->title->SetColor('darkred');
// Setup font for axis
$graph->xaxis->SetFont(FF_FONT1);
$graph->yaxis->SetFont(FF_FONT1);
// Create the bar pot
$bplot = new BarPlot($datay);
$bplot->SetWidth(0.6);
// Setup color for gradient fill style
$bplot->SetFillGradient("navy","lightsteelblue",GRAD_VER);
// Set color for the frame of each bar
$bplot->SetColor("navy");
$graph->Add($bplot);
// Finally send the graph to the browser
$graph->Stroke();
Других решений пока нет …