게시판(5)
-
최근게시물
홈페이지 index 페이지에 게시판 최근게시물을 노출할 수 있다. /index.php index 최상단 session 관련 코드 필수 /lib/func.php
2022.02.28
-
댓글 게시판
댓글 게시판 글쓰기, 글저장, 글수정, 글삭제 기능 세 개의 이미지 파일 업로드 가능 글 내용 보기 페이지에 댓글 쓰기 기능 추가 글 목록 페이지의 글 제목 뒤에 댓글의 개수 표시 특징 free.sql, free_ripple.sql DB table 2개 사용 insert, insert_ripple 2개 사용 delete, delete_ripple 2개 사용 free.sql create table free ( 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 cha..
2022.02.25
-
다운로드 게시판
download.sql file 첨부에 필요한 filed 첨부되는 실제 파일 이름 실제 업로드된 파일 파일의 타입 create table download ( 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, 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 ch..
2022.02.24
-
이미지 첨부 게시판
/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