game/pages/nn/server.php

14 lines
No EOL
243 B
PHP

<?php
$datas = array(
'root' => array(
'data' => 'Donnee 1',
'otherData' => array(
'sub1' => 'Donnee 2',
'sub2' => 'Donnee 3'
)
)
);
require_once('../Class/JSON.php');
$json = new Services_JSON();
header("X-JSON: " . $json->encode($datas));
?>