webgui/www/extras/yui/examples/json/assets/jsonConnect.php
JT Smith 20f8df1291 upgrading to YUI 2.6
data tables are going to need some work yet, but the other stuff seems to be working 100%
2008-10-22 23:53:29 +00:00

16 lines
363 B
PHP

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