<?php
include ("jpgraph/jpgraph.php");
include ("jpgraph/jpgraph_pie.php");
$graph = new PieGraph(250, 200, "auto");
$graph->SetFrame(true);
$data = array(45, 23, 18, 32);
$pieplotc = new PiePlotC($data);
$pieplotc->SetMidTitle("Title");
$graph->Add($pieplotc);
$graph->Stroke();
?>