PHP Classes

Calendar Events: Display and manage database stored calendar events

Recommend this page to a friend!
     
  Info   Example   View files Files   Install with Composer Install with Composer   Download Download   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
StarStarStar 56%Total: 9,199 All time: 167 This week: 47Up
Version License PHP version Categories
calendarevents 1.0.0Freeware4Time and Date, Databases, Content man...
Description 

Author

This class can display calendars that act as a Web interface to manage events and important dates recorded in a MySQL database.

The class presents month calendars with links that can be used to add an event record to a given data, alter the event details, delete an event record and show more details about a given event.

Picture of Harish Chauhan
Name: Harish Chauhan is available for providing paid consulting. Contact Harish Chauhan .
Classes: 28 packages by
Country: India India
Age: ???
All time rank: 32 in India India
Week rank: 180 Down21 in India India Down
Innovation award
Innovation award
Nominee: 1x

Recommendations

Access Time for Groups
Access per time range

Example

<?php
   
   
//You can use mysql and sqlite database. For it is easy to use database wrapper classes
    //Please get IT FROM http://www.phpclasses.org/browse/package/2021.html
    //And uncommnet the db statements from the CALEVENT class

   
include("calevents.inc.php");

   
$host="host";
   
$user='user';
   
$password="pwd";
   
$database='database';

   
$cal=new CALEVENTS();
   
$cal->setInfo($host,$user,$password,$database);
   
// OR $cal=new CALEVENTS($host,$user,$password,$database);
   
    //Add event
    //$event="This is fourth event";
    //$cal->addEvent($event,'2005-04-27');

    //Update event
    //$event="This is updated fourth event";
    //$cal->updateEvent(10,$event);

    //Delete Event
    //$cal->delEvent(1);
    // OR $cal->delEvent("1,4,6");

   
$cal->drawCalendar();

?>


  Files folder image Files (3)  
File Role Description
Plain text file calevents.inc.php Class main class
Accessible without login Plain text file caltest.php Example example
Accessible without login Plain text file events.sql Data SQL Database File

The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page.
Install with Composer Install with Composer
 Version Control Unique User Downloads Download Rankings  
 0%
Total:9,199
This week:0
All time:167
This week:47Up
User Ratings User Comments (2)
 All time
Utility:81%StarStarStarStarStar
Consistency:80%StarStarStarStarStar
Documentation:-
Examples:72%StarStarStarStar
Tests:-
Videos:-
Overall:56%StarStarStar
Rank:1862
 
Very good it helps me very much Package rating comment
12 years ago (cengiz)
70%StarStarStarStar
Very good it helps me very much
15 years ago (Dona Doni Manuel)
57%StarStarStar