Login   Register  
PHP Classes
elePHPant
Icontem

File: calendar_sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Ammo  >  Base Calendar 2  >  calendar_sql  >  Download  
File: calendar_sql
Role: Auxiliary data
Content type: text/plain
Description: the sql table for the calendar
Class: Base Calendar 2
Dispaly two month and can insert appointment
Author: By
Last change:
Date: 2005-03-10 06:20
Size: 652 bytes
 

Contents

Class file image Download
-- phpMyAdmin SQL Dump
-- version 2.6.1
-- http://www.phpmyadmin.net
-- 
-- Host: localhost
-- Generation Time: Mar 05, 2005 at 09:33 AM
-- Server version: 4.0.20
-- PHP Version: 4.3.7
-- 
-- Database: `calendar`
-- 

-- --------------------------------------------------------

-- 
-- Table structure for table `calendar`
-- 

CREATE TABLE `calendar` (
  `id` bigint(20) NOT NULL auto_increment,
  `ora_app` varchar(10) default NULL,
  `day` char(2) default NULL,
  `month` char(3) default NULL,
  `year` varchar(5) default NULL,
  `appointment` mediumtext,
  `recurrence` char(1) default NULL,
  PRIMARY KEY  (`id`)
) TYPE=MyISAM AUTO_INCREMENT=14 ;