11 lines
196 B
PHP
11 lines
196 B
PHP
<?php
|
|
|
|
require_once "../vendor/autoload.php";
|
|
|
|
use Itguild\Tables\ListJsonTable;
|
|
|
|
$json = file_get_contents('simple.json');
|
|
|
|
$table = new ListJsonTable($json);
|
|
$table->create();
|
|
$table->render(); |