Salve a tutti,
ho un problema con fullcalendar in quanto non riesco a visualizzare la stringa nell'url con le variabili start e end.

codice HTML:
<script type="text/javascript">
    $(document).ready(function () {
        $('#calendar').fullCalendar({
            header: {
                left: 'today',
                center: 'prevYear, prev, title, next, nextYear',
                right: 'month,basicWeek,basicDay',
            },
           
            defaultDate: '<?php echo h(date("Y-m-d")); ?>',
            editable: true,
            eventLimit: true, // allow "more" link when too many events
            lang: '<?php echo substr($setting['languageFrontend'], 0, 2); ?>',
            events: <?php echo $json; ?>
        });
    });
</script>
Secondo il manuale:
http://fullcalendar.io/docs/event_da...nts_json_feed/
dovrei visualizzare un url tipo questo che cambia tutte le volte che premo sui pulsanti per andare avanti o indietro nel tempo:
/myfeed.php?start=2013-12-01&end=2014-01-12&_=1386054751381

Qualcuno di voi sa come posso fare?

Grazie,
pmi