I am developing a web application about statistics, so I am using the library jpgraph
What is going wrong is that the graph does not appear. Displays only the browser's broken image icon.
$num = 20;
$num2 = 10;
$data = array($num,$num2);
$graph = new PieGraph(300,200);
$graph->SetShadow();
$graph->title->Set("Utilizadores Registados");
$p1 = new PiePlot($data);
$graph->Add($p1);
$graph->Stroke();
I am sure that GD is enable.
Thank you!