묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
PHP -> 디비 insert 질문 입니다.
2006.07.26 22:31
<input type=hidden name=no value='<?=$no?>'>
<style type='text/css'>
.m {
font-size: 11pt;
font-family: "Century Gothic", 굴림, serif;
}
</style>
<?
include "setting.php";
$query = "select * from limwb_v1_qna where no='$no'+ '+ ' ";
$result = mysql_query($query, $connect);
$data = mysql_fetch_array($result);
?>
<form action='update.php?no=<?=$no?>' method='post'>
<span class='m'+ '>번호: <?=$data[no]?><br /></span>
<span class='m'>질문: <?=$data[memo]?><br /></span>
<span class='m'>답변: <input type='text' name='edit_ans' value='<?=$data[ans]?>'></span><br />
<input type='submit' value=' 답변 달기 '>
</form>
<? mysql_close($connect); ?>
------------------------------------------------------ 위에가 대략 a.php
<input type=hidden name=no value='<?=$no?>'>
<?
include "setting.php";
/* $query = "update limwb_v1_qna set
ans='$edit_ans'
where no='$no' "; */
$query = "insert into limwb_v1_qna(ans, editregdate) values('$edit_ans',now()) where no='$no' ";
mysql_query($query, $connect);
mysql_close($connect);
?>
<script>
location.href='index.php';
</script>
--------------------------------------------- 요게 update.php 입니다. no 값도 입력 받았는데 insert 가 왜 안되는지 도저히 몰르겠어요.. (setting.php 에서 db접속은 성공적으로 됩니다. select까지)
<style type='text/css'>
.m {
font-size: 11pt;
font-family: "Century Gothic", 굴림, serif;
}
</style>
<?
include "setting.php";
$query = "select * from limwb_v1_qna where no='$no'+ '+ ' ";
$result = mysql_query($query, $connect);
$data = mysql_fetch_array($result);
?>
<form action='update.php?no=<?=$no?>' method='post'>
<span class='m'+ '>번호: <?=$data[no]?><br /></span>
<span class='m'>질문: <?=$data[memo]?><br /></span>
<span class='m'>답변: <input type='text' name='edit_ans' value='<?=$data[ans]?>'></span><br />
<input type='submit' value=' 답변 달기 '>
</form>
<? mysql_close($connect); ?>
------------------------------------------------------ 위에가 대략 a.php
<input type=hidden name=no value='<?=$no?>'>
<?
include "setting.php";
/* $query = "update limwb_v1_qna set
ans='$edit_ans'
where no='$no' "; */
$query = "insert into limwb_v1_qna(ans, editregdate) values('$edit_ans',now()) where no='$no' ";
mysql_query($query, $connect);
mysql_close($connect);
?>
<script>
location.href='index.php';
</script>
--------------------------------------------- 요게 update.php 입니다. no 값도 입력 받았는데 insert 가 왜 안되는지 도저히 몰르겠어요.. (setting.php 에서 db접속은 성공적으로 됩니다. select까지)
irc.hanirc.org #php 의 Sakura 님 감사합니다.