<?php

include ("jpgraph/jpgraph.php");
include ("jpgraph/jpgraph_pie.php");

$graph = new PieGraph(250, 200, "auto"); 
$graph->SetFrame(true);
$graph->title->Set("earth");

$data = array(10, 10, 10, 10, 10, 10, 10, 10);
$pieplot = new PiePlot($data);
$pieplot->SetTheme("earth");

$graph->Add($pieplot);

$graph->Stroke();
?>