src/cm/media/js/lib/yui/yui3.0.0/examples/json/assets/jsonConnect.php
author gibus
Tue, 11 Feb 2014 12:33:25 +0100
changeset 572 93383e54e042
parent 0 40c8f766c9b8
permissions -rw-r--r--
Font size for piwik optout iframe.

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