数据库设计

1,新建数据库onecms

CREATE DATABASE onecms;

2,新建message表:

CREATE TABLE message(

id int(11) not null primary key auto_increment,

title varchar(255) NOT NULL,

content text NOT NULL)

ENGINE=InnoDB DEFAULT CHARSET=utf8;

3,表结构如下图所示:

微信图片_20180308094013.png

继续学习
||
<?php echo "数据库设计";
提交重置代码
章节
笔记
提问
课件
反馈
捐赠

PHP留言板设计