File "read.php"

Full Path: /home/analogde/www/Outlook/Fusion/Table/read.php
File size: 194 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
// Read the JSON file  
$json = file_get_contents('aaadata.json'); 
  
// Decode the JSON file 
$json_data = json_decode($json,true); 
  
// Display data 
print_r($json_data); 
?>