까다로운 질문입니다.
본문
리스트에서 필드를 변경할 수 있게 처리하였습니다.
<?php
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
$write_table = $g5['write_prefix'].$bo_table;
$wr_id = $_GET['wr_id'];
$wr_1 = $_GET['wr_1'];
$wr_2 = $_GET['wr_2'];
$sql = " update $write_table
set wr_1 = '$wr_1',
set wr_2 = '$wr_2',
where wr_id = '$wr_id' " ;
sql_query($sql);
alert('상태 수정이 완료되었습니다.');
?>
이때 wr_3에는
아래와 같은 수정이력이 남게 하려면 위의 코드 어느부분에 어떻게 해야 할지요..
$wr_3=$write['wr_3'].'\n'. $member['mb_name']."".date('Y-m-d H:i:s').'/'; //수정일
답변 1
$sql = " update $write_table
set wr_1 = '$wr_1',
wr_2 = '$wr_2',
wr_3 = '$wr_3'
where wr_id = '$wr_id' " ;
sql_query($sql);
=================================================================
자주 이런 질문을 하시는데요
오해 하지마세요
bbs/write_update.php
이 파일을 참고하시면 왠만 한거는 다되요
위질문도 파일 안에 559 번째 줄에 보면 있어요
$sql = " update {$g5['board_file_table']}
set bf_source = '{$upload[$i]['source']}',
bf_file = '{$upload[$i]['file']}',
bf_content = '{$bf_content[$i]}',
bf_filesize = '{$upload[$i]['filesize']}',
bf_width = '{$upload[$i]['image']['0']}',
bf_height = '{$upload[$i]['image']['1']}',
bf_type = '{$upload[$i]['image']['2']}',
bf_datetime = '".G5_TIME_YMDHIS."'
where bo_table = '{$bo_table}'
and wr_id = '{$wr_id}'
and bf_no = '{$i}' ";
sql_query($sql);