Version 0.10

This commit is contained in:
nemunaire 2008-11-19 12:00:00 +01:00
commit b9c240c781
246 changed files with 10218 additions and 1598 deletions

14
pages/nn/server.php Normal file
View file

@ -0,0 +1,14 @@
<?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));
?>