input id 값으로 숫자 받아서 wr_ 에 넣으려면...
본문
input id 값으로 숫자 받아서 wr_ 에 넣으려면... 어떻게 해야될까요..
<div id="footer">
<p style="margin-top: 20px; color:#fff;">예상 견적가<input class="text-font1" type="text" name="total" id="total" value="0" readonly="readonly" <?php echo ($write['wr_100']);?>>원</p>
</div>
계산된 금액을 wr_100 DB에 저장하려고 합니다
어떻게 해야될까요.. 위에 제가 따로 추가해봐도 안되서 물어봅니다..
<?php echo ($write['wr_100']);?> 이걸 추가로 넣었는데 안되네요..
답변 3
<div id="footer">
<p style="margin-top: 20px; color:#fff;">예상 견적가<input class="text-font1" type="text" name="wr_100" id="total" value="<?php echo $write['wr_100']; ?>" readonly="readonly">원</p>
</div>
<div id="footer">
<p style="margin-top: 20px; color:#fff;">예상 견적가<input class="text-font1" type="text" name="total" id="total" value="<?php echo ($write['wr_100']);?>" readonly="readonly" >원</p>
</div>
이런식으로 적용하셔야 하며
<?php echo ($write['wr_'.넘어온 변수값]);?>
기본적으로 wr_1 ~ wr_10 까지만 저장이 되는 형태 같습니다.
https://github.com/gnuboard/gnuboard5/blob/master/bbs/write_update.php#L126
https://github.com/gnuboard/gnuboard5/blob/master/bbs/write_update.php#L294
https://github.com/gnuboard/gnuboard5/blob/master/bbs/write_update.php#L407
이런경우 bbs 쪽을 직접 수정하거나
write_update_after 훅 커스텀 또는 skin 파일 에서 추가처리를 해주는 방법이 있습니다.
https://github.com/gnuboard/gnuboard5/blob/master/bbs/write_update.php#L761
https://github.com/gnuboard/gnuboard5/blob/master/bbs/write_update.php#L753