La query funzia.
Ecco il codice che ho inserito:
codice:
<?php
include ("/srv/www/htdocs/jpgraph/src/jpgraph.php");
include ("/srv/www/htdocs/jpgraph/src/jpgraph_line.php");
include ("/srv/www/htdocs/jpgraph/src/jpgraph_bar.php");
$zona="2";
$connessione = mysql_connect ($host , $user, $password);
$query= "select fatturato_1,descrizione_linea from $nome_tabella where codice_agente='$zona'";
$query_risultato = mysql_db_query ($nome_database, $query , $connessione);
$st = mysql_query( $query ) or die( mysql_error() );
while ( $row = mysql_fetch_assoc( $st ) )
{
$datay[] = $row['fatturato_1'];
$datax[] = $row['descrizione_linea'];
}
$graph = new graph(580,400,"auto");
$graph->setscale("textlin");
$bplot = new BarPlot($datay);
$bplot->SetFillColor("orange");
$graph->Add($bplot);
$graph->Stroke();
?>
Il problema è che oltre non funzionare correttamente mi da anche questo messaggio:
codice:
JpGraph Error: HTTP headers have already been sent.
Explanation:
HTTP headers have already been sent back to the browser indicating the data as text before the library got a chance to send it's image HTTP header to this browser. This makes it impossible for the library to send back image data to the browser (since that would be interpretated as text by the browser and show up as junk text).
Most likely you have some text in your script before the call to Graph::Stroke(). If this texts gets sent back to the browser the browser will assume that all data is plain text. Look for any text, even spaces and newlines, that might have been sent back to the browser.
For example it is a common mistake to leave a blank line before the opening "<?php".
Cosa vuol dire?
Ale
1