| author | Yves-Marie Haussonne <ymh.work+github@gmail.com> |
| Fri, 09 May 2014 18:35:26 +0200 | |
| changeset 656 | a84519031134 |
| parent 0 | 40c8f766c9b8 |
| permissions | -rw-r--r-- |
| 0 | 1 |
<?php |
2 |
/* yadl_spaceid - Skip Stamping */ |
|
3 |
header('Content-Type: application/json'); |
|
4 |
||
5 |
$messages =<<<END |
|
6 |
[ |
|
7 |
{ "animal" : "Cat", "message" : "Meow" }, |
|
8 |
{ "animal" : "Dog", "message" : "Woof" }, |
|
9 |
{ "animal" : "Cow", "message" : "Moo" }, |
|
10 |
{ "animal" : "Duck", "message" : "Quack" }, |
|
11 |
{ "animal" : "Lion", "message" : "Roar" } |
|
12 |
] |
|
13 |
END; |
|
14 |
||
15 |
echo($messages); |
|
16 |
?> |