그누보드 모든 게시판에 특정 필드를 일괄 추가하기 (2017-11-14 12:27 수정)
그누보드 게시판에 특정 필드를 한번에 추가할때 사용하기 위해 만들었습니다.
그누보드5 폴더에 table_filed_add.php 라는 파일을 생성후 브라우저로 실행하면 추가됩니다.
<?php
include_once "_common.php";
$dbconn = mysqli_connect(G5_MYSQL_HOST,G5_MYSQL_USER,G5_MYSQL_PASSWORD,G5_MYSQL_DB) ;
if (!$dbconn) {
echo "Error: Unable to connect to MySQL." . PHP_EOL;
echo "Debugging errno: " . mysqli_connect_errno() . PHP_EOL;
echo "Debugging error: " . mysqli_connect_error() . PHP_EOL;
exit;
}
$sql = "select * from ".$g5['board_table']." order by bo_table asc ";
$result = mysqli_query($dbconn,$sql);
echo "<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>";
// 추가할 필드명
$hp_add_field = "";
// 추가할 필드명 속성
$hp_add_field_type = " varchar(255) NOT NULL DEFAULT '' ";
// 특정 필드 뒤에 추가하기
// $hp_add_field_after = " AFTER wr_10 ";
if (!$hp_add_field) {
echo '추가할 필드이름을 넣으세요';
exit;
}
$id_num = "0";
while($data = mysqli_fetch_array($result)) {
echo $data["bo_table"] ."<br>";
$field_query = "SHOW COLUMNS FROM ".$g5['write_prefix'] . $data["bo_table"]." WHERE Field = '".$hp_add_field."';";
$field_row = sql_fetch( $field_query );
if(!$field_row['Field']) {
sql_query(" ALTER TABLE ".$g5['write_prefix'] . $data["bo_table"]." ADD ".$hp_add_field . $hp_add_field_type . $hp_add_field_after." ", true);
}
}
echo mysqli_error($dbconn);
// close connection
mysqli_close($dbconn);
?>
참고자료
http://majesty76.tistory.com/27
https://stackoverflow.com/questions/17541312/alter-table-add-multiple-columns-after-column1
댓글 2개
게시판 목록
그누보드5 팁자료실
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 2455 |
|
1년 전 | 1118 | |
| 2454 | 1년 전 | 1054 | ||
| 2453 | 1년 전 | 1618 | ||
| 2452 | 1년 전 | 1152 | ||
| 2451 | 1년 전 | 955 | ||
| 2450 | 1년 전 | 1333 | ||
| 2449 | 1년 전 | 881 | ||
| 2448 | 1년 전 | 1332 | ||
| 2447 | 1년 전 | 1410 | ||
| 2446 | 1년 전 | 1125 | ||
| 2445 | 1년 전 | 1281 | ||
| 2444 | 1년 전 | 1674 | ||
| 2443 | 1년 전 | 1484 | ||
| 2442 | 1년 전 | 1070 | ||
| 2441 | 1년 전 | 1177 | ||
| 2440 | 1년 전 | 4619 | ||
| 2439 | 1년 전 | 1076 | ||
| 2438 | 1년 전 | 1116 | ||
| 2437 | 1년 전 | 925 | ||
| 2436 | 1년 전 | 1559 | ||
| 2435 | 1년 전 | 1453 | ||
| 2434 | 1년 전 | 1016 | ||
| 2433 |
|
1년 전 | 613263 | |
| 2432 |
|
1년 전 | 1091 | |
| 2431 |
|
1년 전 | 1705 | |
| 2430 | 1년 전 | 1310 | ||
| 2429 | 1년 전 | 1269 | ||
| 2428 | 1년 전 | 1145 | ||
| 2427 | 1년 전 | 1108 | ||
| 2426 |
뽕엄능브라
|
1년 전 | 1229 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기