Integrating jQuery fullcalendar into PHP website

前端 未结 11 865
夕颜
夕颜 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:22

    just in case there is someone using rails with jbuilder to generate the json feed...you have to add the allDay attribute ...

    json.array!(@resubmissions) do |object|
      json.id object.id
      json.title "WVL - #{object.to_s}"
      json.start object.resubmission_at.to_i
      json.allDay false
    end
    

    However, thanks for the PHP solution!

提交回复
热议问题