PHP Classes

Calendar Events: Display and manage database stored calendar events

Recommend this page to a friend!
  Info   View files Example   View files View files (3)   DownloadInstall with Composer Download .zip   Reputation   Support forum (3)   Blog    
Ratings Unique User Downloads Download Rankings
StarStarStar 56%Total: 9,198 This week: 1All time: 167 This week: 560Down
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: 106 Down8 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  
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

 Version Control Unique User Downloads Download Rankings  
 0%
Total:9,198
This week:1
All time:167
This week:560Down
User Ratings User Comments (2)
 All time
Utility:81%StarStarStarStarStar
Consistency:80%StarStarStarStarStar
Documentation:-
Examples:72%StarStarStarStar
Tests:-
Videos:-
Overall:56%StarStarStar
Rank:1837
 
Very good it helps me very much Package rating comment
12 years ago (cengiz)
70%StarStarStarStar
Very good it helps me very much
14 years ago (Dona Doni Manuel)
57%StarStarStar