fullCalendar events post method to MySQL

后端 未结 3 1717
小蘑菇
小蘑菇 2020-12-16 05:55

I am attempting to create a MySQL backed events interface, using fullCalendar and MySQL. I have tried to manipulate the examples in the fullCalendar documentation and have s

3条回答
  •  情深已故
    2020-12-16 06:50

    This is the conclusion I have come up with and I have no problem running this off my test and public server. I have taken the FullCalendar and this is the format I use.

    The database is real simple.

    id integer 11 chars primary key auto-increment,
    title varchar 50,
    start varchar 50,
    end varchar 50,
    url varchar 50.
    

    This is the index.php or index.html file.

    
    
    
    
    
    
    
    
    
    
    
    
    
    

    json.php needs to be running in the same directory.

    This is the json.php file.

    
    

提交回复
热议问题