Integrating jQuery fullcalendar into PHP website

前端 未结 11 886
夕颜
夕颜 2021-02-01 09:28

I would like to integrate the jQuery fullcalendar into my PHP website, but I don\'t know how to handle the event and how to use the JSON data from MySQL.

Any advice wou

11条回答
  •  逝去的感伤
    2021-02-01 10:18

    In PHP - JSON:

    $eventsArray['allDay'] = "false"; //doesn't work
    
    $eventsArray['allDay'] = false; //did the trick to have a NON FULL DAY correctly rendered!!
    

提交回复
热议问题