[PHP] DB구조,schema 파일로 테이블생성하기 (미완성)
로빈아빠
본문
schema.php 파일을 만들어 봅시다.
이 프로그램은 공지사항, 일기장 등으로 사용할 수 있게 하기위해, 2개정도 또는 그 이상의 독립된 테이블이 존재해야 하겠죠,
$name_nd
라고 합시다. 사용법은 나중에 설명하죠
위에서 구조를 정해놓은대로 만들어 봅시다
==================================
schema.php
------------------------------------------------------------
<?
include "dbconn.php"; //DB 접속
//테이블 만들기
mysql_query("
create table nd_$name (
number int(10) not null auto_increment,
name char(50) not null,
subject char(60) not null,
memo text not null,
password char(20) not null,
writetime int(13) not null,
primary key(number)
)",$connect)
or die("테이블설치오류".mysql_error());
echo "테이블 생성완료!";
?>
=================================
이렇게 만들고 계정에 올린뒤에,
주소창에 써 봅시다.
http://주소/폴더/schema.php?name=이름
위에서 말한 $name 이 여기서 쓰이는군요!
name=diary 라고 한다면, 테이블은
diary_nd 라고 이름지어 만들어질것입니다.
만약 "테이블 생성완료!" 라는 메시지만 뜬다면 잘 잘된겁니다
이 프로그램은 공지사항, 일기장 등으로 사용할 수 있게 하기위해, 2개정도 또는 그 이상의 독립된 테이블이 존재해야 하겠죠,
$name_nd
라고 합시다. 사용법은 나중에 설명하죠
위에서 구조를 정해놓은대로 만들어 봅시다
==================================
schema.php
------------------------------------------------------------
<?
include "dbconn.php"; //DB 접속
//테이블 만들기
mysql_query("
create table nd_$name (
number int(10) not null auto_increment,
name char(50) not null,
subject char(60) not null,
memo text not null,
password char(20) not null,
writetime int(13) not null,
primary key(number)
)",$connect)
or die("테이블설치오류".mysql_error());
echo "테이블 생성완료!";
?>
=================================
이렇게 만들고 계정에 올린뒤에,
주소창에 써 봅시다.
http://주소/폴더/schema.php?name=이름
위에서 말한 $name 이 여기서 쓰이는군요!
name=diary 라고 한다면, 테이블은
diary_nd 라고 이름지어 만들어질것입니다.
만약 "테이블 생성완료!" 라는 메시지만 뜬다면 잘 잘된겁니다
관련링크
댓글목록
등록된 댓글이 없습니다.