Monday, March 3, 2014

PHP Event Calendar

A calendar designed to create events.



Create a database "calendar".
Create table "event":

CREATE TABLE `event` (
  `id` int(2) NOT NULL AUTO_INCREMENT,
  `event` varchar(50) DEFAULT NULL,
  `dt_start` datetime DEFAULT NULL,
  `dt_end` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;


Click links below to continue
index.php
data.php
css.php

1 comment: