Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6103511
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T13:44:14+00:00 2026-05-23T13:44:14+00:00

Does anyone know of open-source PHP calendar class that handles the storage, retrieving and

  • 0

Does anyone know of open-source PHP calendar class that handles the storage, retrieving and removing of events.

I have looked everywhere and all I can find is classes that will create the HMTL output for a calendar but don’t manage the actual calendar events.

I can’t use google calendar as the project I am working on doesn’t allow me to make the calendar publicly accessible and it also needs to work offline.

I know this question has been asked a thousand times before but I have never come across a complete answer.

UPDATE::
This calendar is going to be used in a commercial application but unfortunately we don’t have the funding to buy software licensces at teh current time so all 3rd party scripts would need to be free to distribute in a commercial application

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T13:44:15+00:00Added an answer on May 23, 2026 at 1:44 pm

    In the project I’m working on currently, we’ve had a similar challenge. We also wanted to show events that aren’t per se calendar items, but items that came out of action plans.

    We’ve used Full Calender, combined with PHP programming that supplies the JSON feed. Full Calendar also supplies many event hooks, which in our case triggers a Ajax post to PHP Programming which edits the database.

    A little more detailed:

    We call Full Calendar with:

    $('#calendar').fullCalendar({
      events: '/pl_feed.php'
    });
    

    Full Calendar then visits, for instance:

    /pl_feed.php?start=1262332800&end=1265011200&_=1263178646
    

    (the extra parameter is used to prevent caching)

    pl_feed.php generates the events that are displayed in the Calendar.

    By the way: I found that the David Powers Date Class (read his book: it’s good) is a joy to work with. You can download it at the site of the publisher: http://www.apress.com/9781430210115

    When it’s done generating the requested events, pl_feed.php puts them in a multi-dimensional array and echoes the array with json_encode:

        foreach ($array_events as $array_event) {
    
            $array_feed_item['id'] = $array_event['id'];
            $array_feed_item['title'] = //Whatever you like to be the title;
            $array_feed_item['start'] = $array_event['start']; //Y-m-d H:i:s format
            $array_feed_item['end'] = $array_event['end']; //Y-m-d H:i:s format
            $array_feed_item['allDay'] = 0;
            $array_feed_item['color'] = 'blue'; //Whatever you like, of course
            $array_feed_item['borderColor'] = 'blue';
            //You can also a CSS class: 
            $array_feed_item['className'] = 'pl_act_rood';
    
            //Add this event to the full list of events:
            $array_feed_items[] = $array_feed_item;
        }
    
        echo json_encode($array_feed_items);
    

    Full Calendar will then show you the events generated by /pl_feed.php.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone know of an open source PHP class (preferably BSD or MIT license)
Does anyone know of a good method for editing PDFs in PHP? Preferably open-source/zero-license
Does anyone know of any free or open source terminal emulators that will emulate
Open Source PHP script for HTTP streaming? Does anyone know something about such things?
Does anyone know of an Open Source three-way merge implementation in JavaScript or PHP?
Does anyone know of any open-source UITableViewController implementations that are styled like the ones
Does anyone know of an open source module or a good method for handling
Does anyone know of a good open source plugin for database querying and exploring
Does anyone know of a good (preferably open source) library for dealing with the
Does anyone know a good (preferably open source and cross platform) tool to allow

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.