글쓰기(2)
-
이미지 첨부 게시판
/concert/concert.sql create table concert ( num int not null auto_increment, id char(15) not null, name char(10) not null, nick char(10) not null, subject char(100) not null, content text not null, regist_day char(20), hit int, is_html char(1), file_name_0 char(40), file_name_1 char(40), file_name_2 char(40), file_name_3 char(40), file_name_4 char(40), file_copied_0 char(30), file_copied_1 char(..
2022.02.22
-
기본게시판
기본게시판 제작 요구사항 페이지 번호가 표시된 글 목록 페이지 조회수 표시 글 내용 보기 내용 검색 html 쓰기 가능 글 수정 글/수정 글 저장(한 파일에 처리) 작성자와 관리자만 글 수정 및 삭제 가능 greet.sql 가입인사 데이터베이스 테이블 생성 list.php 글 목록 피이지 write_form.php 글 쓰기 페이지 view.php 글 내용보기 페이지 modify_form.php 글 수정 페이지 insert.php 글 저장 (수정 포함) delete.php 글 삭제 데이터베이스 테이블 설계 및 생성 num(프라이머리키), id, name, nick, subject(제목), content, regist_day(작성일 및 시간), hit(조회수), is_html(html글쓰기) /greet/g..
2022.02.21