src/cm/media/js/lib/yui/yui3.0.0/examples/json/assets/jsonConnect.php
author raph
Mon, 23 Nov 2009 15:14:29 +0100
changeset 0 40c8f766c9b8
permissions -rw-r--r--
import from internal svn r 4007

<?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);
?>