<!DOCTYPE html>
<html>
<head>
<style>
table{font-family: arial, sans-serif;border-collapse: collapse;width: 100%;}
td, th {border: 1px solid #dddddd;text-align: left;padding: 8px;}
tr:nth-child(even) {background-color: #dddddd;}
</style>
</head>
<body>
<?php
$file = json_decode(file_get_contents('test.json'));
echo '<table>';
foreach($file as $x){
    echo '<tr>';
    foreach($x as $xx){
        echo '<td>'.$xx.'</td>';
    }
    echo '</tr>';
}
echo '</table>'
?>
</body>
</html>