Study/PHP&MySQL(41)
-
문자 및 변수명 조합으로 가변변수 만들기
${"brand_list".$j}
2022.05.20
-
검색
유효성 검사 후 검색기능 index.php 상품명 상품검색어입력
2022.02.28
-
최근게시물
홈페이지 index 페이지에 게시판 최근게시물을 노출할 수 있다. /index.php index 최상단 session 관련 코드 필수 /lib/func.php
2022.02.28
-
설문조사
servey.sql create table survey( ans1 int, ans2 int, ans3 int, ans4 int ); insert into survey values(0, 0, 0, 0); servey.php 가장 좋아하는 기타 작곡가는? 1. 타레가 2. 빌라로보스 3. 끌레양 4. 소르 result.php 총 투표수 : 명 가장 좋아하는 기타 작곡가는? 타레가 ( %) 명 명 명 명
2022.02.25
-
댓글 게시판
댓글 게시판 글쓰기, 글저장, 글수정, 글삭제 기능 세 개의 이미지 파일 업로드 가능 글 내용 보기 페이지에 댓글 쓰기 기능 추가 글 목록 페이지의 글 제목 뒤에 댓글의 개수 표시 특징 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