$ unzip googchart_0_1.zip Archive: googchart_0_1.zip inflating: example.php inflating: GoogChart.class.php <?php include_once('GoogChart.class.php'); $data = array( 'IE7' => 22, 'IE6' => 30.7, 'IE5' => 1.7, 'Firefox' => 36.5, 'Mozilla' => 1.1, 'Safari' => 2, 'Opera' => 1.4, ); $chart = new googChart(); $chart->setChartAttrs( array( 'type' => 'pie', 'data' => $data, 'size' => array( 300, 200 ) ));