반응형
5. 게시판 만들기
5.1 실습예제
5.1.1 board.sql
CREATE TABLE board (
id int(11) NOT NULL auto_increment,
name
);
5.1.2 board.css
td { font-size: 12px; }
a:link { font: 12px; color: black; text-decoration: none; font-family: 굴림; font-size: 12px; }
a:visited { text-decoration: none; color: black; font-size: 12px; }
a:hover { text-decoration: underline; color: black; font-size: 12px; }
5.1.3 list.php
5.1.4 write.php
5.1.5 insert.php
5.1.6 read.php
5.1.7 edit.php
5.1.8 update.php
5.1.9 predel.php
5.1.10 delete.php
반응형