간단히 필드 추가하기 > 그누4 팁자료실

그누4 팁자료실

그누보드4와 관련된 팁을 여러분들과 함께 공유하세요.
나누면 즐거움이 커집니다.

간단히 필드 추가하기 정보

간단히 필드 추가하기

본문

db_plus.php

<?
include_once("./_common.php");
include_once("./_head.php");

//wr_11 ~15필드 늘리기
sql_fetch(" alter table g4_write_테이블명 add wr_11 text ");
sql_fetch(" alter table g4_write_테이블명 add wr_12 text ");
sql_fetch(" alter table g4_write_테이블명 add wr_13 text ");
sql_fetch(" alter table g4_write_테이블명 add wr_14 text ");
sql_fetch(" alter table g4_write_테이블명 add wr_15 text ");


include_once("./_tail.php");
?>


위 내용을 저장한후
http://홈페이지/db_plus.php

------------------------------------------------------------------------------------------------------------------------
보너스팩

반대로 삭제하기..

db_drop.php

<?
include_once("./_common.php");
include_once("./_head.php");

//wr_11 ~15필드 삭제하기
sql_fetch(" alter table g4_write_테이블명 drop wr_11 text ");
sql_fetch(" alter table g4_write_테이블명 drop wr_12 text ");
sql_fetch(" alter table g4_write_테이블명 drop wr_13 text ");
sql_fetch(" alter table g4_write_테이블명 drop wr_14 text ");
sql_fetch(" alter table g4_write_테이블명 drop wr_15 text ");


include_once("./_tail.php");
?>

위 내용을 저장한후
http://홈페이지/db_drop.php
추천
9
  • 복사

댓글 21개

© SIRSOFT
현재 페이지 제일 처음으로