CSS Graph- Bars not showing correctly
- by Olivia
I'm trying to create a CSS/HTML based graph using this tutorial here.
However instead of putting the data directly into the html code I'm importing it from a CSV file using PHP with the following code.
<?PHP
/* Open CSV file */
$handle = fopen("defects.csv", "r");
$c = 0;
/* gets data from csv file */
while (($data = fgetcsv($handle,…