PHP開發製作乙個簡單的活動日程表Calendar

2022-10-06 09:18:12 字數 2133 閱讀 2599

材料取之深入php與jquery開發,這本書實際上就是講述乙個活動日程表。

此文章適合從其它語言(如j**a,c++,python等)轉到php,沒有系統學習php,或者是php初學者,已經對程式有較深理解的朋友

以上為檔案目錄結構,public為程式根目錄,目的是為了安全方面的考慮,把核心程式放在外界訪問不到的地方。

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

首先是資料庫的指令碼:

/*n**icat 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 if not exists `php-jquery_example`

default character set utf8

collate utf8_unicode_ci;

span style="color: rgb(0, 128, 0);">

span style="color: rgb(0, 128, 0);">

mzdzwxmwqspan style="color: rgb(0, 128, 0);">set foreign_key_checks=0;

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

-- table structure for> events

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

drop table if exists `events`;

span style="color: rgb(0, 128, 0);">create table `events` (

`event_id` int(11) not null auto_increment,

`event_title` varchar(80) collate utf8_unicode_ci default null,

`event_desc` text collate utf8_unicode_ci,

`event_start` timestamp not null 程式設計客棧0, 255);">default '0000-00-00 00:00:00',

`event_end` timestamp not null ">default '0000-0www.cppcns.com0-00 00:00:00',

primary key (`event_id`),

key `event_start` (`event_start`)

) engine=myisam auto_increment=3 default charset=utf8 collate=utf8_unicode_ci;

span style="color: rgb(0, 128, 0);">

span style="color: rgb(0, 128, 0);">-- ----------------------------

-- records of events

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

insert into `events` values ('1', 'new year&;#039;s day', 'happy new year!', '2010-01-01 00:00:00', '2010-01-01 23:59:59');

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');

php開發製作乙個簡單的活動日程表calendar第二篇,。

本文標題: php開發製作乙個簡單的活動日程表calendar

本文位址:

用PHP製作乙個簡單的驗證碼

我是一名php新手,最近在整一 下面是我在註冊頁面上使用的驗證碼功能,雖然這個比較簡單,但是還是能起到一定的作用。比我原來什麼都不知道好很多。下面是步驟和 每個函式都都有注釋,對於新手而言比較好懂 1 開啟session session start 2 建立隨機碼並儲存到session num fo...

Feature開發一(製作乙個簡單的自定義選單)

features 是moss 2007以開箱即用的一套新功能,features 儲存在sharepoint伺服器的如下路徑下 c program files common files microsoft shared web server extensions 12 template feature...

製作乙個簡易的PHP框架

crom是結合當前各種框架和各類教程,自己整合的開發框架,框架能進行簡易的web開發。gitlab原始碼鏈結 ctrl model views core common config libimooc.php log storage vendor composer.json index.php 框架根...