sorry to post this but have been struggling now for 8 days and really hope someone can help as I am at the end. I have json.html & xxjson-events.php in same directory, both file content posted below.

json.html

<script type="text/javascript">
    $(document).ready(function() {
        var date = new Date();
        var d = date.getDate();
        var m = date.getMonth();
        var y = date.getFullYear();

$('#calendar').fullCalendar({

    eventSources: [

        // your event source
        {
            url: '/xxjson-events.php' // use the `url` property
        }

    ]

});

</script>

xxjson-events.php

   <?php
    mysql_select_db($database_ghl_portal, $ghl_portal);
$query_rsXXCal = "SELECT * FROM events";
$rsXXCal = mysql_query($query_rsXXCal, $ghl_portal) or die(mysql_error());
$row_rsXXCal = mysql_fetch_assoc($rsXXCal);
$totalRows_rsXXCal = mysql_num_rows($rsXXCal);mysql_select_db($database_ghl_portal, $ghl_portal);
$query_rsXXCal = "SELECT * FROM events";
$rsXXCal = mysql_query($query_rsXXCal, $ghl_portal) or die(mysql_error());
$row_rsXXCal = mysql_fetch_assoc($rsXXCal);
$totalRows_rsXXCal = mysql_num_rows($rsXXCal);
        $result = mysql_query($query_rsXXCal) or die(mysql_error());

        while($row = mysql_fetch_assoc($result)){
             $eventsArray = array();
             $eventsArray['title'] = $row['title'];
             $eventsArray['start'] = $row['start_date'];
             $eventsArray['end'] = $row['end_date']; 
        }  
        echo json_encode($eventsArray)
    ?>

json-events.php viewed in browser shows:

{"title":"TEST","start":"2012-02-23 00:00:00","end":"2012-02-24 00:00:00"}

The calendar shows on page however data does not pull through to the calendar? has anyone any ideas at all why this could be please, really struggling with this and need to sort. I thought it may be the datetimestamp showing 00:00:00 but changed this with no success?

If it helps anyone I have uploaded a zip containing 3 files to see if it works for anyone else? http://ghldatastream.co.uk.predns.ourwindowsnetwork.com/fullcal_json.zip

Thanks

link|improve this question

46% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Your start and end date have to be in IETF, ISO8601 or UNIX timestamp format - see http://arshaw.com/fullcalendar/docs/event_data/Event_Object/

link|improve this answer
Hi Aldrin, many thanks for your help. I thought the date format was already UNIX timestamp, have you an example of how I should format this? Is it done in JSON or the html calendar page? I cant seem to track down any info on how/where I should implement this change? Thanks – gary Feb 23 at 14:00
it should be done in the JSON preferably. unfortunately i do not know php, but i figure you could use the function here php.net/manual/en/function.mktime.php – aldrin Feb 23 at 14:37
This is driving me mad! On the calendar output page in javascript I added - var myFormattedDate = $.fullCalendar.formatDate(start, "dd-MM-yyyy"); but it does nothing! <br> I have been on this that long I dont think I can even understand what I need to do anymore! – gary Feb 23 at 15:02
Hi, I now tried to format the date in mysql but still doesnt work - Added this to mysql code in json .php - "Select events.*, Date_Format(events.start_date, '%Y-%m-%dT%H:%i:%s') As start_date, Date_Format(events.end_date, '%Y-%m-%dT%H:%i:%s') As end_date From events"; Any reason why that wouldnt work, really would be nice to see a working example of this, I am baffled! – gary Feb 23 at 15:49
try "select event.* , UNIX_TIMESTAMP(events.start_date) as start_date, UNIX_TIMESTAMP(events.end_date) as end_date from events" – aldrin Feb 23 at 16:03
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.