| changeset 0 | 40c8f766c9b8 |
| -1:000000000000 | 0:40c8f766c9b8 |
|---|---|
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 ?> |