I would like to start creating charts with php version 7.3. If I run the following code o similar ones every time I got a blank screen:
$graph=new PHPGraphLib(500,400);
$data=array("Smith"=>60, "John"=>20, "Paul"=>20);
$graph->addData($data);
$graph->setTitle("Purchases");
$graph->setTextColor("red");
$graph->createGraph();
Into the forum I read a post where it's suggested to get information at (http://www.ebrueggeman.com/phpgraphlib/documentation/tutorial-mysql-and-phpgraphlib) but this link is not active. Thanks in advance for any help