Home  >  Article  >  Backend Development  >  Micro company internal ordering system implemented by PHP+Mysql+jQuery+fullcalendar (1/8)_PHP tutorial

Micro company internal ordering system implemented by PHP+Mysql+jQuery+fullcalendar (1/8)_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 17:04:131075browse

Micro-company internal ordering system implemented by PHP+Mysql+jQuery+fullcalendar
Plug-ins involved in this article: jQuery, jQuery.UI, fullcalendar

Database tutorial creation:

CREATE TABLE USER
(
ID INT PRIMARY KEY AUTO_INCREMENT,
NAME VARCHAR(100)
);

CREATE TABLE ITEM
(
ID INT PRIMARY KEY AUTO_INCREMENT,
USER_ID INT,
FOOD TINYBOLB,
ORDER_TIME TIMESTAMP
);

ALTER TABLE ITEM ADD FOREIGN KEY(USER_ID) REFERENCES USER(ID) ON DELETE CASCADE;


An entity base class, not very well encapsulated: Entity.php tutorial

PHP code 1 2 3 4 5 6 7 8

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/630859.htmlTechArticleMicro-company internal ordering system implemented with PHP+Mysql+jQuery+fullcalendar Plug-ins involved in this article: jQuery, jQuery. UI, fullcalendar database tutorial creation: CREATE TABLE USER ( ID INT PRI...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn