This article will show how to create a simple donut chart using Charts 4 PHP Framework.
Step 1: Include Charts 4 PHP Library
include("../../lib/inc/chartphp_dist.php");
$p = new chartphp();
Step 2: Configure Data array
$p->data = array(array(
array('Mango',6),
array('Apple',8),
array('Kiwi',14),
array('Pear',20)
));
Step 3: Set Chart type
$p->chart_type = "donut";
Step 4: Render Chart
$out = $p->render("c1");
For complete code, please visit live demo.