수정값이 넘어오지 않아요ㅠㅠ 채택완료

여분필드를 사용해서 write화면을 만들었는데 view 화면에서 수정을 누르면 그 저장된 정보가 넘어오지 않고 그냥 새로운 페이지 화면처럼 정보가 나오는데 어떻게 해야 값이 넘올 수 있을까요?ㅠㅠㅠ 

고수님들 도와주세요!!

 

+ 제가 혹시 여분필드를 배열로 저장해서 값이 넘어오지 않는 걸까요ㅠㅠ

 

view

Copy
<?php

if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가

include_once(G5_LIB_PATH.'/thumbnail.lib.php');

 

// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨

add_stylesheet('<link rel="stylesheet" href="'.$board_skin_url.'/style.css">', 0);

 

$wr_1 = explode(' | ', $write['wr_1']);

$water_tank0 =

?>

 

<script src="<?php echo G5_JS_URL; ?>/viewimageresize.js"></script>

 

<!-- 게시물 읽기 시작 { -->

 

<article id="bo_v" style="width:<?php echo $width; ?>">

    <header>

        <h2 id="bo_v_title">

            <?php if ($category_name) { ?>

            <span class="bo_v_cate"><?php echo $view['ca_name']; // 분류 출력 끝 ?></span>

            <?php } ?>

            <span class="bo_v_tit">

            <?php

            echo cut_str(get_text($view['wr_subject']), 70); // 글제목 출력

            ?></span>

        </h2>

    </header>

 

    <section id="bo_v_info">

        <h2>페이지 정보</h2>

        <div class="profile_info">

            <div class="pf_img"><?php echo get_member_profile_img($view['mb_id']) ?></div>

            <div class="profile_info_ct">

                <span class="sound_only">작성자</span> <strong><?php echo $view['name'] ?><?php if ($is_ip_view) { echo "&nbsp;($ip)"; } ?></strong><br>

                <span class="sound_only">댓글</span><strong><a href="#bo_vc"> <i class="fa fa-commenting-o" aria-hidden="true"></i> <?php echo number_format($view['wr_comment']) ?>건</a></strong>

                <span class="sound_only">조회</span><strong><i class="fa fa-eye" aria-hidden="true"></i> <?php echo number_format($view['wr_hit']) ?>회</strong>

                <strong class="if_date"><span class="sound_only">작성일</span><i class="fa fa-clock-o" aria-hidden="true"></i> <?php echo date("y-m-d H:i", strtotime($view['wr_datetime'])) ?></strong>

            </div>

        </div>

 

        <!-- 게시물 상단 버튼 시작 { -->

        <div id="bo_v_top">

            <?php ob_start(); ?>

 

            <ul class="btn_bo_user bo_v_com">

                <li><a href="<?php echo $list_href ?>" class="btn_b01 btn" title="목록"><i class="fa fa-list" aria-hidden="true"></i><span class="sound_only">목록</span></a></li>

                <?php if ($reply_href) { ?><li><a href="<?php echo $reply_href ?>" class="btn_b01 btn" title="답변"><i class="fa fa-reply" aria-hidden="true"></i><span class="sound_only">답변</span></a></li><?php } ?>

                <?php if ($write_href) { ?><li><a href="<?php echo $write_href ?>" class="btn_b01 btn" title="글쓰기"><i class="fa fa-pencil" aria-hidden="true"></i><span class="sound_only">글쓰기</span></a></li><?php } ?>

                <?php if($update_href || $delete_href || $copy_href || $move_href || $search_href) { ?>

                <li>

                    <button type="button" class="btn_more_opt is_view_btn btn_b01 btn"><i class="fa fa-ellipsis-v" aria-hidden="true"></i><span class="sound_only">게시판 리스트 옵션</span></button>

                    <ul class="more_opt is_view_btn">

                        <?php if ($update_href) { ?><li><a href="<?php echo $update_href ?>">수정<i class="fa fa-pencil-square-o" aria-hidden="true"></i></a></li><?php } ?>

                        <?php if ($delete_href) { ?><li><a href="<?php echo $delete_href ?>" onclick="del(this.href); return false;">삭제<i class="fa fa-trash-o" aria-hidden="true"></i></a></li><?php } ?>

                        <?php if ($copy_href) { ?><li><a href="<?php echo $copy_href ?>" onclick="board_move(this.href); return false;">복사<i class="fa fa-files-o" aria-hidden="true"></i></a></li><?php } ?>

                        <?php if ($move_href) { ?><li><a href="<?php echo $move_href ?>" onclick="board_move(this.href); return false;">이동<i class="fa fa-arrows" aria-hidden="true"></i></a></li><?php } ?>

                        <?php if ($search_href) { ?><li><a href="<?php echo $search_href ?>">검색<i class="fa fa-search" aria-hidden="true"></i></a></li><?php } ?>

                    </ul>

                </li>

                <?php } ?>

            </ul>

            <script>

 

            jQuery(function($){

                // 게시판 보기 버튼 옵션

                $(".btn_more_opt.is_view_btn").on("click", function(e) {

                    e.stopPropagation();

                    $(".more_opt.is_view_btn").toggle();

                })

;

                $(document).on("click", function (e) {

                    if(!$(e.target).closest('.is_view_btn').length) {

                        $(".more_opt.is_view_btn").hide();

                    }

                });

            });

            </script>

            <?php

            $link_buttons = ob_get_contents();

            ob_end_flush();

            ?>

        </div>

        <!-- } 게시물 상단 버튼 끝 -->

    </section>

 

    <section id="bo_v_atc">

        <h2 id="bo_v_atc_title">본문</h2>

        <div id="bo_v_share">

            <?php include_once(G5_SNS_PATH."/view.sns.skin.php"); ?>

            <?php if ($scrap_href) { ?><a href="<?php echo $scrap_href;  ?>" target="_blank" class="btn btn_b03" onclick="win_scrap(this.href); return false;"><i class="fa fa-bookmark" aria-hidden="true"></i> 스크랩</a><?php } ?>

        </div>

               <style>

            table{

            width:100%;

            text-align:center;

            margin:10px;

            border: 1px solid #444444;

            border-collapse: collapse;

        }

        td{

            width:200px;

            height:50px;

            border: 1px solid #444444;

        }

        td>input{

            width:90%;

            height:100%;

           

        }

        th{

            border: 1px solid #444444;

            background-color:#eeeeee;

        }

    </style>

   <div class="write_div">

        <div>

            <table>

                <tr style="font-size:13px; height:45px;">

                    <th>관리항목</th>

                    <th>점검사항</th>

                    <th>점검방법</th>

                    <th>점검내역</th>

                    <th>1일 점검 횟수</th>

                </tr>

                <th rowspan="4" style="font-size:13px; width:80px;">관리내역</th>    

                    <td style="width:300px;">1. 수조</td>

                    <td><?php echo $view['wr_1'][0] ?></td>

                    <td><?php echo $view['wr_1'][4] ?></td>

                    <td><?php echo $view['wr_1'][8] ?></td>

                </tr>

                <tr>

                    <td style="width:300px;">2-1. 질병</td>

                    <td><?php echo $view['wr_2'] ?></td>

                    <td><?php echo $view['wr_2'] ?></td>

                    <td><?php echo $view['wr_2'] ?></td>

                </tr>

                <tr>

                    <td style="width:300px;">2-2.약품</td>

                    <td><?php echo $view['wr_3'] ?></td>

                    <td><?php echo $view['wr_3'] ?></td>

                    <td><?php echo $view['wr_3'] ?></td>

                </tr>

                <tr>

 

   

 

        <?php

        // 파일 출력

        $v_img_count = count($view['file']);

        if($v_img_count) {

            echo "<div id=\"bo_v_img\">\n";

 

            foreach($view['file'] as $view_file) {

                echo get_file_thumbnail($view_file);

            }

 

            echo "</div>\n";

        }

         ?>

 

        <!-- 본문 내용 시작 { -->

        <div id="bo_v_con"><?php echo get_view_thumbnail($view['content']); ?></div>

        <?php //echo $view['rich_content']; // {이미지:0} 과 같은 코드를 사용할 경우 ?>

        <!-- } 본문 내용 끝 -->

 

        <?php if ($is_signature) { ?><p><?php echo $signature ?></p><?php } ?>


 

        <!--  추천 비추천 시작 { -->

        <?php if ( $good_href || $nogood_href) { ?>

        <div id="bo_v_act">

            <?php if ($good_href) { ?>

            <span class="bo_v_act_gng">

                <a href="<?php echo $good_href.'&amp;'.$qstr ?>" id="good_button" class="bo_v_good"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i><span class="sound_only">추천</span><strong><?php echo number_format($view['wr_good']) ?></strong></a>

                <b id="bo_v_act_good"></b>

            </span>

            <?php } ?>

            <?php if ($nogood_href) { ?>

            <span class="bo_v_act_gng">

                <a href="<?php echo $nogood_href.'&amp;'.$qstr ?>" id="nogood_button" class="bo_v_nogood"><i class="fa fa-thumbs-o-down" aria-hidden="true"></i><span class="sound_only">비추천</span><strong><?php echo number_format($view['wr_nogood']) ?></strong></a>

                <b id="bo_v_act_nogood"></b>

            </span>

            <?php } ?>

        </div>

        <?php } else {

            if($board['bo_use_good'] || $board['bo_use_nogood']) {

        ?>

        <div id="bo_v_act">

            <?php if($board['bo_use_good']) { ?><span class="bo_v_good"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i><span class="sound_only">추천</span><strong><?php echo number_format($view['wr_good']) ?></strong></span><?php } ?>

            <?php if($board['bo_use_nogood']) { ?><span class="bo_v_nogood"><i class="fa fa-thumbs-o-down" aria-hidden="true"></i><span class="sound_only">비추천</span><strong><?php echo number_format($view['wr_nogood']) ?></strong></span><?php } ?>

        </div>

        <?php

            }

        }

        ?>

        <!-- }  추천 비추천 끝 -->

    </section>

 

    <?php

    $cnt = 0;

    if ($view['file']['count']) {

        for ($i=0; $i<count($view['file']); $i++) {

            if (isset($view['file'][$i]['source']) && $view['file'][$i]['source'] && !$view['file'][$i]['view'])

                $cnt++;

        }

    }

    ?>

 

    <?php if($cnt) { ?>

    <!-- 첨부파일 시작 { -->

    <section id="bo_v_file">

        <h2>첨부파일</h2>

        <ul>

        <?php

        // 가변 파일

        for ($i=0; $i<count($view['file']); $i++) {

            if (isset($view['file'][$i]['source']) && $view['file'][$i]['source'] && !$view['file'][$i]['view']) {

         ?>

            <li>

                <i class="fa fa-folder-open" aria-hidden="true"></i>

                <a href="<?php echo $view['file'][$i]['href'];  ?>" class="view_file_download">

                    <strong><?php echo $view['file'][$i]['source'] ?></strong> <?php echo $view['file'][$i]['content'] ?> (<?php echo $view['file'][$i]['size'] ?>)

                </a>

                <br>

                <span class="bo_v_file_cnt"><?php echo $view['file'][$i]['download'] ?>회 다운로드 | DATE : <?php echo $view['file'][$i]['datetime'] ?></span>

            </li>

        <?php

            }

        }

         ?>

        </ul>

    </section>

    <!-- } 첨부파일 끝 -->

    <?php } ?>

 

    <?php if(isset($view['link']) && array_filter($view['link'])) { ?>

    <!-- 관련링크 시작 { -->

    <section id="bo_v_link">

        <h2>관련링크</h2>

        <ul>

        <?php

        // 링크

        $cnt = 0;

        for ($i=1; $i<=count($view['link']); $i++) {

            if ($view['link'][$i]) {

                $cnt++;

                $link = cut_str($view['link'][$i], 70);

            ?>

            <li>

                <i class="fa fa-link" aria-hidden="true"></i>

                <a href="<?php echo $view['link_href'][$i] ?>" target="_blank">

                    <strong><?php echo $link ?></strong>

                </a>

                <br>

                <span class="bo_v_link_cnt"><?php echo $view['link_hit'][$i] ?>회 연결</span>

            </li>

            <?php

            }

        }

        ?>

        </ul>

    </section>

    <!-- } 관련링크 끝 -->

    <?php } ?>

   

    <?php if ($prev_href || $next_href) { ?>

    <ul class="bo_v_nb">

        <?php if ($prev_href) { ?><li class="btn_prv"><span class="nb_tit"><i class="fa fa-chevron-up" aria-hidden="true"></i> 이전글</span><a href="<?php echo $prev_href ?>"><?php echo $prev_wr_subject;?></a> <span class="nb_date"><?php echo str_replace('-', '.', substr($prev_wr_date, '2', '8')); ?></span></li><?php } ?>

        <?php if ($next_href) { ?><li class="btn_next"><span class="nb_tit"><i class="fa fa-chevron-down" aria-hidden="true"></i> 다음글</span><a href="<?php echo $next_href ?>"><?php echo $next_wr_subject;?></a>  <span class="nb_date"><?php echo str_replace('-', '.', substr($next_wr_date, '2', '8')); ?></span></li><?php } ?>

    </ul>

    <?php } ?>

 

    <?php

    // 코멘트 입출력

    include_once(G5_BBS_PATH.'/view_comment.php');

    ?>

</article>

<!-- } 게시판 읽기 끝 -->

 

<script>

<?php if ($board['bo_download_point'] < 0) { ?>

$(function() {

    $("a.view_file_download").click(function() {

        if(!g5_is_member) {

            alert("다운로드 권한이 없습니다.\n회원이시라면 로그인 후 이용해 보십시오.");

            return false;

        }

 

        var msg = "파일을 다운로드 하시면 포인트가 차감(<?php echo number_format($board['bo_download_point']) ?>점)됩니다.\n\n포인트는 게시물당 한번만 차감되며 다음에 다시 다운로드 하셔도 중복하여 차감하지 않습니다.\n\n그래도 다운로드 하시겠습니까?";

 

        if(confirm(msg)) {

            var href = $(this).attr("href")+"&js=on";

            $(this).attr("href", href);

 

            return true;

        } else {

            return false;

        }

    });

});

<?php } ?>

 

function board_move(href)

{

    window.open(href, "boardmove", "left=50, top=50, width=500, height=550, scrollbars=1");

}

</script>

 

<script>

$(function() {

    $("a.view_image").click(function() {

        window.open(this.href, "large_image", "location=yes,links=no,toolbar=no,top=10,left=10,width=10,height=10,resizable=yes,scrollbars=no,status=no");

        return false;

    });

 

    // 추천, 비추천

    $("#good_button, #nogood_button").click(function() {

        var $tx;

        if(this.id == "good_button")

            $tx = $("#bo_v_act_good");

        else

            $tx = $("#bo_v_act_nogood");

 

        excute_good(this.href, $(this), $tx);

        return false;

    });

 

    // 이미지 리사이즈

    $("#bo_v_atc").viewimageresize();

});

 

function excute_good(href, $el, $tx)

{

    $.post(

        href,

        { js: "on" },

        function(data) {

            if(data.error) {

                alert(data.error);

                return false;

            }

 

            if(data.count) {

                $el.find("strong").text(number_format(String(data.count)));

                if($tx.attr("id").search("nogood") > -1) {

                    $tx.text("이 글을 비추천하셨습니다.");

                    $tx.fadeIn(200).delay(2500).fadeOut(200);

                } else {

                    $tx.text("이 글을 추천하셨습니다.");

                    $tx.fadeIn(200).delay(2500).fadeOut(200);

                }

            }

        }, "json"

    );

}

</script>

<!-- } 게시글 읽기 끝 -->

 

write

Copy
<?php

if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가

 

// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨

add_stylesheet('<link rel="stylesheet" href="'.$board_skin_url.'/style.css">', 0);

?>

 

<section id="bo_w">

    <h2 class="sound_only"><?php echo $g5['title'] ?></h2>

 

    <!-- 게시물 작성/수정 시작 { -->

    <form name="fwrite" id="fwrite" action="<?php echo $action_url ?>" onsubmit="return fwrite_submit(this);" method="post" enctype="multipart/form-data" autocomplete="off" style="width:<?php echo $width; ?>">

    <input type="hidden" name="uid" value="<?php echo get_uniqid(); ?>">

    <input type="hidden" name="w" value="<?php echo $w ?>">

    <input type="hidden" name="bo_table" value="<?php echo $bo_table ?>">

    <input type="hidden" name="wr_id" value="<?php echo $wr_id ?>">

    <input type="hidden" name="sca" value="<?php echo $sca ?>">

    <input type="hidden" name="sfl" value="<?php echo $sfl ?>">

    <input type="hidden" name="stx" value="<?php echo $stx ?>">

    <input type="hidden" name="spt" value="<?php echo $spt ?>">

    <input type="hidden" name="sst" value="<?php echo $sst ?>">

    <input type="hidden" name="sod" value="<?php echo $sod ?>">

    <input type="hidden" name="page" value="<?php echo $page ?>">

    <input type="hidden" name="page" value="<?php echo $page ?>">

    <input type="hidden" name="page" value="<?php echo $page ?>">

    <input type="hidden" name="wr_subject" value="작업일지-성육관리">

    <input type="hidden" name="wr_content" value="작업일지-성육관리">

    <?php

    $option = '';

    $option_hidden = '';

    if ($is_notice || $is_html || $is_secret || $is_mail) {

        $option = '';

        if ($is_notice) {

            $option .= PHP_EOL.'<li class="chk_box"><input type="checkbox" id="notice" name="notice"  class="selec_chk" value="1" '.$notice_checked.'>'.PHP_EOL.'<label for="notice"><span></span>공지</label></li>';

        }

        if ($is_html) {

            if ($is_dhtml_editor) {

                $option_hidden .= '<input type="hidden" value="html1" name="html">';

            } else {

                $option .= PHP_EOL.'<li class="chk_box"><input type="checkbox" id="html" name="html" onclick="html_auto_br(this);" class="selec_chk" value="'.$html_value.'" '.$html_checked.'>'.PHP_EOL.'<label for="html"><span></span>html</label></li>';

            }

        }

        if ($is_secret) {

            if ($is_admin || $is_secret==1) {

                $option .= PHP_EOL.'<li class="chk_box"><input type="checkbox" id="secret" name="secret"  class="selec_chk" value="secret" '.$secret_checked.'>'.PHP_EOL.'<label for="secret"><span></span>비밀글</label></li>';

            } else {

                $option_hidden .= '<input type="hidden" name="secret" value="secret">';

            }

        }

        if ($is_mail) {

            $option .= PHP_EOL.'<li class="chk_box"><input type="checkbox" id="mail" name="mail"  class="selec_chk" value="mail" '.$recv_email_checked.'>'.PHP_EOL.'<label for="mail"><span></span>답변메일받기</label></li>';

        }

    }

    echo $option_hidden;

    ?>

 

    <?php if ($is_category) { ?>

    <div class="bo_w_select write_div">

        <label for="ca_name" class="sound_only">분류<strong>필수</strong></label>

        <select name="ca_name" id="ca_name" required>

            <option value="">분류를 선택하세요</option>

            <?php echo $category_option ?>

        </select>

    </div>

    <?php } ?>

 

    <div class="bo_w_info write_div">

        <?php if ($is_name) { ?>

            <label for="wr_name" class="sound_only">이름<strong>필수</strong></label>

            <input type="text" name="wr_name" value="<?php echo $name ?>" id="wr_name" required class="frm_input half_input required" placeholder="이름">

        <?php } ?>

   

        <?php if ($is_password) { ?>

            <label for="wr_password" class="sound_only">비밀번호<strong>필수</strong></label>

            <input type="password" name="wr_password" id="wr_password" <?php echo $password_required ?> class="frm_input half_input <?php echo $password_required ?>" placeholder="비밀번호">

        <?php } ?>

   

        <?php if ($is_email) { ?>

            <label for="wr_email" class="sound_only">이메일</label>

            <input type="text" name="wr_email" value="<?php echo $email ?>" id="wr_email" class="frm_input half_input email " placeholder="이메일">

        <?php } ?>

       

   

        <?php if ($is_homepage) { ?>

            <label for="wr_homepage" class="sound_only">홈페이지</label>

            <input type="text" name="wr_homepage" value="<?php echo $homepage ?>" id="wr_homepage" class="frm_input half_input" size="50" placeholder="홈페이지">

        <?php } ?>

    </div>

    <style>

        table{

            width:100%;

            text-align:center;

            margin:10px;

            border: 1px solid #444444;

            border-collapse: collapse;

        }

        td{

            height:15px;

            border: 1px solid #444444;

        }

        td>input{

            width:90%;

            height:100%;

           

        }

        th{

            border: 1px solid #444444;

            background-color:#eeeeee;

        }

    </style>

    <div class="write_div">

        <table border="1">

            <tr style="font-size:13px; height:45px;">

                <th>관리항목</th>

                <th>점검사항</th>

                <th>점검방법</th>

                <th>점검내역</th>

                <th>1일 점검 횟수</th>

            </tr>

            <tr>

                <th rowspan="5" style="font-size:13px; width:80px;">성육관리</th>

                <td>1. 수조</td>

                <td><input type="text" name="water_tank[0]" value="<?php echo $water_tank[0] ?>" class="frm_input full_input" style="border:none; text-align:center;" placeholder="점검방법"></td>

                <td><input type="text" name="water_tank[1]" value="<?php echo $water_tank[1] ?>" class="frm_input full_input" style="border:none; text-align:center;" placeholder="점검내역"></td></td>

                <td><input type="text" name="water_tank[2]" value="<?php echo $water_tank[2] ?>" class="frm_input full_input" style="border:none; text-align:center;" placeholder="1일 점검 횟수"></td></td>

            </tr>

            <tr>

                <td>2-1. 질병</td>

                <td><input type="text" name="disease_status[0]" value="<?php echo $disease_status[0] ?>" class="frm_input full_input" style="border:none; text-align:center;" placeholder="점검방법"></td></td>

                <td><input type="text" name="disease_status[1]" value="<?php echo $disease_status[1] ?>" class="frm_input full_input" style="border:none; text-align:center;" placeholder="점검내역"></td></td>

                <td><input type="text" name="disease_status[2]" value="<?php echo $disease_status[2] ?>" class="frm_input full_input" style="border:none; text-align:center;" placeholder="1일 점검 횟수"></td></td>

            </tr>

            <tr>

                <td>2-2. 약품</td>

                <td><input type="text" name="disease_control[0]" value="<?php echo $disease_control[0] ?>" class="frm_input full_input" style="border:none; text-align:center;" placeholder="점검방법"></td></td>

                <td><input type="text" name="disease_control[1]" value="<?php echo $disease_control[1] ?>" class="frm_input full_input" style="border:none; text-align:center;" placeholder="점검내역"></td></td>

                <td><input type="text" name="disease_control[2]" value="<?php echo $disease_control[2] ?>" class="frm_input full_input" style="border:none; text-align:center;" placeholder="1일 점검 횟수"></td></td>

            </tr>

        </table>

       

    </div>

 

    <div class="btn_confirm write_div">

        <a href="<?php echo get_pretty_url($bo_table); ?>" class="btn_cancel btn">취소</a>

        <button type="submit" id="btn_submit" accesskey="s" class="btn_submit btn">작성완료</button>

    </div>

    </form>

 

    <script>

    <?php if($write_min || $write_max) { ?>

    // 글자수 제한

    var char_min = parseInt(<?php echo $write_min; ?>); // 최소

    var char_max = parseInt(<?php echo $write_max; ?>); // 최대

    check_byte("wr_content", "char_count");

 

    $(function() {

        $("#wr_content").on("keyup", function() {

            check_byte("wr_content", "char_count");

        });

    });

 

    <?php } ?>

    function html_auto_br(obj)

    {

        if (obj.checked) {

            result = confirm("자동 줄바꿈을 하시겠습니까?\n\n자동 줄바꿈은 게시물 내용중 줄바뀐 곳을<br>태그로 변환하는 기능입니다.");

            if (result)

                obj.value = "html2";

            else

                obj.value = "html1";

        }

        else

            obj.value = "";

    }

 

    function fwrite_submit(f)

    {

        <?php echo $editor_js; // 에디터 사용시 자바스크립트에서 내용을 폼필드로 넣어주며 내용이 입력되었는지 검사함   ?>

 

        var subject = "";

        var content = "";

        $.ajax({

            url: g5_bbs_url+"/ajax.filter.php",

            type: "POST",

            data: {

                "subject": f.wr_subject.value,

                "content": f.wr_content.value

            },

            dataType: "json",

            async: false,

            cache: false,

            success: function(data, textStatus) {

                subject = data.subject;

                content = data.content;

            }

        });

 

        if (subject) {

            alert("제목에 금지단어('"+subject+"')가 포함되어있습니다");

            f.wr_subject.focus();

            return false;

        }

 

        if (content) {

            alert("내용에 금지단어('"+content+"')가 포함되어있습니다");

            if (typeof(ed_wr_content) != "undefined")

                ed_wr_content.returnFalse();

            else

                f.wr_content.focus();

            return false;

        }

 

        if (document.getElementById("char_count")) {

            if (char_min > 0 || char_max > 0) {

                var cnt = parseInt(check_byte("wr_content", "char_count"));

                if (char_min > 0 && char_min > cnt) {

                    alert("내용은 "+char_min+"글자 이상 쓰셔야 합니다.");

                    return false;

                }

                else if (char_max > 0 && char_max < cnt) {

                    alert("내용은 "+char_max+"글자 이하로 쓰셔야 합니다.");

                    return false;

                }

            }

        }

 

        <?php echo $captcha_js; // 캡챠 사용시 자바스크립트에서 입력된 캡챠를 검사함  ?>

 

        document.getElementById("btn_submit").disabled = "disabled";

 

        return true;

    }

    </script>

</section>

<!-- } 게시물 작성/수정 끝 -->

 

write_update

Copy
<?php

if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가

 

$wr_1 = "$water_tank[0] | $water_tank[1] | $water_tank[2]";

$wr_2 = "$disease[0] | $disease[1] | $disease[2]";

$wr_3 = "$drug[0] | $drug[1] | $drug[2]";

 

$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);

?>

 

답변 1개

채택된 답변
+20 포인트

제가 이해한게 맞는지는 모르겠지만

DB는 wr_1, wr_2, wr_3으로 저장이 되어있겠네요

다시 재호출시에는 wr_1을 호출해야하는데 

$water_tank[0]은 단순 배열을 활용한 변수일뿐 DB로써의 호출가치는 없는것 같아요

wr_1을 다시 배열로 합치신 후 호출하시거나

개별저장을 통해 부르셔야할 것 가탕요

로그인 후 평가할 수 있습니다

답변에 대한 댓글 3개

헉... 그래서 그랬군요!!ㅠㅠㅠㅠ 그럼 개별저장밖에 답이 없겠네요....? 아니면 합쳐서 부른다는 것은 view화면에 배열들을 wr_1를 합친채로 데이터값을 표출해야된다는 말씀이시죠?ㅠㅠ
혹시 여분필드를 더 많이 늘리면 확실히 데이터 불러오는 속도가 엄청 느려지겠죠...ㅠㅠㅠㅠ?
네 합쳐서 호출한 뒤 쪼개는 방법도 있지요..

하나의 레코드들의 값에서 호출한다면 "엄청" 느려지지는 않을꺼에요

댓글을 작성하려면 로그인이 필요합니다.

답변을 작성하려면 로그인이 필요합니다.

로그인
🐛 버그신고