src/cm/media/js/lib/yui/yui3.0.0/examples/json/assets/jsonConnect.php
changeset 0 40c8f766c9b8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/cm/media/js/lib/yui/yui3.0.0/examples/json/assets/jsonConnect.php	Mon Nov 23 15:14:29 2009 +0100
@@ -0,0 +1,16 @@
+<?php
+/* yadl_spaceid - Skip Stamping */
+header('Content-Type: application/json');
+
+$messages =<<<END
+[
+    { "animal" : "Cat", "message" : "Meow" },
+    { "animal" : "Dog", "message" : "Woof" },
+    { "animal" : "Cow", "message" : "Moo" },
+    { "animal" : "Duck", "message" : "Quack" },
+    { "animal" : "Lion", "message" : "Roar" }
+]
+END;
+
+echo($messages);
+?>