Home > Backend Development > PHP Tutorial > BBS(php & mysql)完整版(八)

BBS(php & mysql)完整版(八)

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-05-22 18:40:08
Original
1377 people have browsed it
//完毕 wish you sucess!!

# phpMyAdmin MySQL(和PHP搭配之最佳组合)-Dump
# http://phpwizard.net/phpMyAdmin/
#
# 主机: localhost:3306 数据库 : database
# --------------------------------------------------------
#
# 数据表的结构 'bbs_html'
#

CREATE TABLE bbs_html (
  id int(15) DEFAULT '0' NOT NULL,
  userid varchar(20) NOT NULL,
  date1 varchar(20) NOT NULL,
  title varchar(40) NOT NULL,
  content text NOT NULL,
  r1 int(15) DEFAULT '0' NOT NULL,
  r2 int(15) DEFAULT '0' NOT NULL,
  number tinyint(4) DEFAULT '0' NOT NULL,
  row tinyint(5) DEFAULT '0' NOT NULL,
  r3 int(15) DEFAULT '0' NOT NULL,
  r4 int(15) DEFAULT '0' NOT NULL,
  r5 int(15) DEFAULT '0' NOT NULL,
  UNIQUE id (id)
);


# --------------------------------------------------------
#
# 数据表的结构 'bbs_js'
#

CREATE TABLE bbs_js (
  id int(15) DEFAULT '0' NOT NULL,
  userid varchar(20) NOT NULL,
  date1 varchar(20) NOT NULL,
  title varchar(40) NOT NULL,
  content text NOT NULL,
  r1 int(15) DEFAULT '0' NOT NULL,
  r2 int(15) DEFAULT '0' NOT NULL,
  number tinyint(4) DEFAULT '0' NOT NULL,
  row tinyint(5) DEFAULT '0' NOT NULL,
  r3 int(15) DEFAULT '0' NOT NULL,
  r4 int(15) DEFAULT '0' NOT NULL,
  r5 int(15) DEFAULT '0' NOT NULL,
  UNIQUE id (id)
);


# --------------------------------------------------------
#
# 数据表的结构 'bbs_MySQL(和PHP搭配之最佳组合)'
#

CREATE TABLE bbs_MySQL(和PHP搭配之最佳组合) (
  id int(15) DEFAULT '0' NOT NULL,
  userid varchar(20) NOT NULL,
  date1 varchar(20) NOT NULL,
  title varchar(40) NOT NULL,
  content text NOT NULL,
  r1 int(15) DEFAULT '0' NOT NULL,
  r2 int(15) DEFAULT '0' NOT NULL,
  number tinyint(4) DEFAULT '0' NOT NULL,
  row tinyint(5) DEFAULT '0' NOT NULL,
  r3 int(15) DEFAULT '0' NOT NULL,
  r4 int(15) DEFAULT '0' NOT NULL,
  r5 int(15) DEFAULT '0' NOT NULL,
  UNIQUE id (id)
);


# --------------------------------------------------------
#
# 数据表的结构 'bbs_php'
#

CREATE TABLE bbs_php (
  id int(15) DEFAULT '0' NOT NULL,
  userid varchar(20) NOT NULL,
  date1 varchar(20) NOT NULL,
  title varchar(40) NOT NULL,
  content text NOT NULL,
  r1 int(15) DEFAULT '0' NOT NULL,
  r2 int(15) DEFAULT '0' NOT NULL,
  number tinyint(4) DEFAULT '0' NOT NULL,
  row tinyint(5) DEFAULT '0' NOT NULL,
  r3 int(15) DEFAULT '0' NOT NULL,
  r4 int(15) DEFAULT '0' NOT NULL,
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template