Separated out the graphing code into a separate js file.

This commit is contained in:
Peter Edmond
2025-05-03 19:06:42 +01:00
parent 4ec9b62d2c
commit 95574d6fd3
8 changed files with 590 additions and 0 deletions

18
examineResponses.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
//Load JSON data
$jsonString = file_get_contents('survey_responses.json');
// Decode the JSON string into a PHP associative array
$data = json_decode($jsonString, true);
// Print the structure of the data
echo '<pre>';
print_r($data);
echo '</pre>';
?>