Separated out the graphing code into a separate js file.
This commit is contained in:
18
examineResponses.php
Normal file
18
examineResponses.php
Normal 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>';
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user