欢迎来到代码驿站!

PHP代码

当前位置:首页 > 软件编程 > PHP代码

PHP开发制作一个简单的活动日程表Calendar

时间:2020-12-13 10:28:00|栏目:PHP代码|点击:

材料取之深入PHP与JQuery开发,这本书实际上就是讲述一个活动日程表。

此文章适合从其它语言(如java,C++,python等)转到php,没有系统学习php,或者是php初学者,已经对程序有较深理解的朋友

以上为文件目录结构,public为程序根目录,目的是为了安全方面的考虑,把核心程序放在外界访问不到的地方。

本地的演示地址为:http://localhost/index.php

首先是数据库的脚本:

/*

Navicat MySQL Data Transfer

 Source Server : localhost_3306

Source Server Version : 50130

Source Host : 127.0.0.1:3306

Source Database : php-jquery_example

 Target Server Type : MYSQL

Target Server Version : 50130

File Encoding : 65001

 Date: 2016-06-19 16:54:29

*/

CREATE DATABASE <SPAN style="color: rgb(0, 0, 255);">IF</SPAN> NOT EXISTS `php-jquery_example`

 <SPAN style="color: rgb(0, 0, 255);">DEFAULT</SPAN> CHARACTER SET utf8

 COLLATE utf8_unicode_ci<SPAN style="color: rgb(0, 128, 0);">;</SPAN>

SPAN style="color: rgb(0, 128, 0);"> </SPAN>

SPAN style="color: rgb(0, 128, 0);"> </SPAN>

SPAN style="color: rgb(0, 128, 0);">SET FOREIGN_KEY_CHECKS=0;</SPAN>

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

-- Table structure <SPAN style="color: rgb(0, 0, 255);">for</SPAN> events

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

DROP TABLE <SPAN style="color: rgb(0, 0, 255);">IF</SPAN> EXISTS `events`<SPAN style="color: rgb(0, 128, 0);">;</SPAN>

SPAN style="color: rgb(0, 128, 0);">CREATE TABLE `events` (</SPAN>

 `event_id` int(11) NOT NULL AUTO_INCREMENT,

 `event_title` varchar(80) COLLATE utf8_unicode_ci <SPAN style="color: rgb(0, 0, 255);">DEFAULT</SPAN> NULL,

 `event_desc` text COLLATE utf8_unicode_ci,

 `event_start` timestamp NOT NULL <SPAN style="color: rgb(0, 0, 255);">DEFAULT</SPAN> '0000-00-00 00:00:00',

 `event_end` timestamp NOT NULL <SPAN style="color: rgb(0, 0, 255);">DEFAULT</SPAN> '0000-00-00 00:00:00',

 PRIMARY KEY (`event_id`),

 KEY `event_start` (`event_start`)

) ENGINE=MyISAM AUTO_INCREMENT=3 <SPAN style="color: rgb(0, 0, 255);">DEFAULT</SPAN> CHARSET=utf8 COLLATE=utf8_unicode_ci<SPAN style="color: rgb(0, 128, 0);">;</SPAN>

SPAN style="color: rgb(0, 128, 0);"></SPAN>

SPAN style="color: rgb(0, 128, 0);">-- ----------------------------</SPAN>

-- Records of events

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

INSERT INTO `events` VALUES ('1', 'New Year&<SPAN style="color: rgb(0, 128, 0);">;#039;s Day', 'Happy New Year!', '2010-01-01 00:00:00', '2010-01-01 23:59:59');</SPAN>

INSERT INTO `events` VALUES ('2', 'Last Day of January', 'Last day of the month!Yay!', '2010-01-31 00:00:00', '2010-01-31 23:59:59')<SPAN style="color: rgb(0, 128, 0);">;</SPAN>

PHP开发制作一个简单的活动日程表Calendar第二篇,请点击

上一篇:PHP中的switch语句的用法实例详解

栏    目:PHP代码

下一篇:深入探讨"<br />"和 "\r\n" 两者有什么区别??

本文标题:PHP开发制作一个简单的活动日程表Calendar

本文地址:http://www.codeinn.net/misctech/32295.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有