This commit is contained in:
Adam Shaw 2009-05-31 04:49:51 +00:00
parent e92525b9e4
commit f3e8cc8d59
13 changed files with 28 additions and 44 deletions

View file

@ -0,0 +1,25 @@
<?php
$year = date('Y');
$month = date('m');
echo json_encode(array(
array(
'id' => 1,
'title' => "Event1",
'start' => "$year-$month-10",
'url' => "http://yahoo.com/"
),
array(
'id' => 2,
'title' => "Event2",
'start' => "$year-$month-20",
'end' => "$year-$month-22",
'url' => "http://yahoo.com/"
)
));
?>