window.addEvent('domready',function(){
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
console.log('responseText:' + xmlhttp.responseText);
try {
var data = xmlhttp.responseText;
} catch(err) {
console.log(err.message + " in " + xmlhttp.responseText);
return;
}
new Calendar({
calContainer:'calBody',
newDate:'04/01/2018',
cEvents: data,
})
}
};
xmlhttp.open("GET", 'eventFeed.php', true);
xmlhttp.send(null);
});
<?php
$events[] = array('title'=>'Jimmy\'s Birthday','start'=>'2018-04-01','end'=>'2018-04-01','location'=>'');
$events[] = array('title'=>'E-Waste Recycle Day','start'=>'2018-04-12T07:00:00-06:00','end'=>'2018-04-13T15:00:00-06:00','location'=>'Recycle Center');
$events[] = array('title'=>'Breakfast','start'=>'2018-04-18T06:00:00-05:00','end'=>'2018-04-18T07:00:00-05:00','location'=>'');
$events[] = array('title'=>'Wash Car','start'=>'2018-04-18T08:00:00-05:00','end'=>'2018-04-18T09:00:00-05:00','location'=>'');
$events[] = array('title'=>'Read Up On Rocket Science','start'=>'2018-04-18T09:00:00-05:00','end'=>'2018-04-18T10:00:00-05:00','location'=>'');
$events[] = array('title'=>'Build The Projectile','start'=>'2018-04-18T13:00:00-05:00','end'=>'2018-04-18T13:30:00-05:00','location'=>'');
$events[] = array('title'=>'Launch The Missile','start'=>'2018-04-18T18:00:00-05:00','end'=>'2018-04-18T20:00:00-05:00','location'=>'');
$events[] = array('title'=>'Labor Day','start'=>'2017-09-07','end'=>'2017-09-07','location'=>'');
$events[] = array('title'=>'Subliminal Closing Party','start'=>'2017-09-30','end'=>'2017-10-01','location'=>'Pacha - Ibiza, Spain');
header('Content-type: application/json');
echo json_encode($events);
?>