15 lines
350 B
PHP
15 lines
350 B
PHP
<?
|
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
|
|
|
// 자신만의 코드를 넣어주세요.
|
|
|
|
if($wr_etc){
|
|
$etc=implode("||",$wr_etc);
|
|
$etc.="||";
|
|
$sql = " update {$write_table}
|
|
set wr_4='{$etc}'
|
|
where wr_id = '{$wr_id}' ";
|
|
sql_query($sql);
|
|
}
|
|
goto_url("./board.php?bo_table=$bo_table");
|
|
?>
|