계층형 게시판
1. 테이블 구조
계층형 게시판 테이블 구조
CREATE TABLE `board` ( `idx` int(11) unsigned NOT NULL AUTO_INCREMENT, `family` int(11) NOT NULL DEFAULT '0', `orderby` int(11) NOT NULL DEFAULT '0', `step` int(11) NOT NULL DEFAULT '0', `notice` int(2) unsigned DEFAULT NULL, `name` varchar(20) NOT NULL DEFAULT '', `pass` varchar(32) NOT NULL DEFAULT '', `header` int(2) unsigned NOT NULL DEFAULT '0', `title` varchar(70) NOT NULL DEFAULT '', `content` mediumtext NOT NULL, `wdate` int(10) unsigned NOT NULL DEFAULT '0', `hit` int(11) DEFAULT NULL, PRIMARY KEY (`idx`) ) ENGINE=MyISAM AUTO_INCREMENT=36 DEFAULT CHARSET=utf8
Field |
Type |
Comment |
idx |
int(11) unsigned |
글 실질적 번호 |
family |
int(11) |
글번호 |
orderby |
int(11) |
답변글의 정렬 순서 |
step |
int(11) |
답변의 단계 판단 값 |
notice |
int(2) |
공지사항 |
name |
varchar(20) |
이름 |
pass |
varchar(32) |
비밀번호 |
header |
int(2) |
머릿말 |
title |
varchar(70) |
제목 |
content |
mediumtest |
내용 |
wdate |
int(10) unsigned |
날짜 |
hit |
int(11) |
조회수 |
반응형
'Coding > PHP' 카테고리의 다른 글
하이라트 테스트 (0) | 2015.01.30 |
---|---|
[PHP] 계층형 게시판 - 5. 글보기 (0) | 2015.01.30 |
[PHP] 계층형 게시판 - 4. 리스트 (0) | 2015.01.30 |
[PHP] 계층형 게시판 - 3. 글쓰기 (0) | 2015.01.30 |
[PHP] 계층형 게시판 - 2. 덧글 테이블 구조 (0) | 2015.01.30 |