|
|
|
แก้ไขข้อมูลรอบแรกข้อมูลครบ แก้ไขอีกรอบข้อมูลหาย ช่วยดูให้หน่อยค่ะ |
|
|
|
|
|
|
|
แก้ไขข้อมูลรอบแรกข้อมูลครบ
แก้ไขอีกรอบข้อมูลหาย
Code (PHP)
<?php
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Testing</title>
<style type="text/css">
<!--
.style1 {font-family: "Courier New", Courier, monospace}
-->
</style>
</head>
<body>
<table width="802" border="0" align="center" cellpadding="0" cellspacing="0">
<tr><td width="802" valign="top"><table width="802" border="0" align="center" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="802" valign="top">
<?php include('include/header.php'); ?>
<?php include('include/menu_staff.php'); ?>
<table width="771" border="0">
<tr>
<td width="182" height="392" valign="top"><img src="images/login_01.jpg" width="165" height="189" /></td>
<td width="579" align="center">
<form action="chk_edit_question_exam1.php?qid=<?=$_GET["qid"];?>" name="frmAns" method="post" target="_blank">
<?
include ('include/config.inc.php');
$strSQL = "SELECT *
FROM questionaire
WHERE questionaire.qid = '".$_GET["qid"]."' ";
mysql_query("SET NAME utf8");
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
?>
<table width="462" height="111" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#003333">
<tr align="left">
<td height="34" colspan="2" bgcolor="#ABDFEB"><span class="style1">ข้อมูลคำถาม</span></td>
</tr>
<tr>
<td width="152" height="32" align="right">รหัสคำถาม : </td>
<td width="304" align="left">
<label>
<input type="text" name="txtqid" id="txtqid" value="<?=$objResult["qid"];?>" />
<input type="hidden" name="txtid" id="txtid" value="<?=$objResult["id"];?>" />
</label></td>
</tr>
<tr>
<td height="43" align="right">คำถามอัตนัย : </td>
<td align="left">
<label>
<input type="text" name="txtquestion" id="txtquestion" value="<?=$objResult["question"];?>"/>
</label></td>
</tr>
</table>
<input type="submit" name="button" id="button" value="ส่งคำถาม" />
</form>
<form action="chk_edit_answer_exam1.php?qid=<?=$_GET["qid"];?>" name="frmAnswer" method="post" target="_blank">
<p>
<?
include ('include/config.inc.php');
$strSQL = "SELECT *
FROM choice_score
WHERE choice_score.qid = '".$_GET["qid"]."' ";
mysql_query("SET NAME utf8");
$objQuery = mysql_query($strSQL);
//$arr = mysql_fetch_array($objQuery);
?>
</p>
<p>
<label></label>
<span class="style1">
<?php
while($arr = mysql_fetch_array($objQuery))
{ ?>
</span></p>
<table width="462" height="88" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#003333">
<tr>
<td height="34" colspan="3" align="left" bgcolor="#ABDFEB"><span class="style1">ข้อมูลคำตอบ
</span></td>
</tr>
<tr>
<td width="130" height="32" align="center" valign="top"> รหัสคำตอบ</td>
<td width="193" height="32" align="left" valign="top"> คำตอบ</td>
<td width="139" align="left" valign="top"><span class="style1">
คะแนน </span></td>
</tr>
<tr>
<td height="22" align="center" valign="top"><input name="txtid" type="hidden" id="txtid" value=" <?=$arr["id"];?>" size="5" />
<input name="txtqid" type="hidden" id="txtqid" value=" <?=$arr["qid"];?>" size="5" />
<input name="txtchoice" type="text" id="txtchoice" value=" <?=$arr["choice"];?>" size="5" /></td>
<td height="22" align="left" valign="top">
<input type="text" name="txtchoiceText" id="txtchoiceText" value="<?=$arr["choiceText"];?>" /></td>
<td height="22" align="left" valign="top">
<input name="txtscore" type="text" id="txtscore" value="<?=$arr["score"];?>" size="5" /></td>
</tr>
</table>
<p>
<input type="submit" name="button2" id="button2" value="ส่งคำตอบ" />
</p>
<p>
<?php }?>
</p>
<p>
<?
mysql_close();
?>
</p>
<p> </p>
</form> </td>
</tr>
</table>
<div align="center">
<?php include('include/footer.php'); ?>
</div></td>
</tr>
</table>
</td></tr></table>
</body></html>
โค้ดเช็ค Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php
include ('include/config.inc.php');
$id=$_POST['txtid'];
$qid=$_POST['txtqid'];
$choice=$_POST['txtchoice'];
$choiceText=$_POST['txtchoiceText'];
$score=$_POST['txtscore'];
$sql = "update choice_score set id = '$id',qid = '$qid', choice = '$choice',choiceText = '$choiceText',score = '$score'
where id = '$id' and qid = '$qid' ";
$result = mysql_query($sql);
//ตรงนี้ ////
//เอ็กโคร่ เอสคิวแอล //
/*echo $sql;*/
if($result){
echo "<script>alert('ระบบได้ทำการแก้ไขข้อมูลเรียบร้อยแล้ว');</script>";
echo "<script>window.location='close.php';</script>";
}
else{
echo "<script>alert('การส่งข้อมูลผิดพลาด กรุณาลองใหม่อีกครั้ง');</script>";
echo "<script>window.location='close.php';</script>";
}
?>
ฐานข้อมูล
--
-- ฐานข้อมูล: `testing`
--
-- --------------------------------------------------------
--
-- โครงสร้างตาราง `choice_score`
--
CREATE TABLE `choice_score` (
`id` int(8) NOT NULL auto_increment,
`qid` int(8) unsigned default NULL,
`choice` char(2) default NULL,
`choiceText` char(200) default NULL,
`score` double default '0',
PRIMARY KEY (`id`),
UNIQUE KEY `qid_2` (`qid`,`choice`),
KEY `qid` (`qid`),
KEY `choice` (`choice`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=22 ;
--
-- dump ตาราง `choice_score`
--
INSERT INTO `choice_score` VALUES (1, 1, ' a', 'แตงเมล่อน(ญี่ปุ่น)', 14);
INSERT INTO `choice_score` VALUES (2, 1, ' b', 'ฮโวคาโด,,xx', 8);
INSERT INTO `choice_score` VALUES (3, 1, ' c', 'ทุเรียน', 6);
INSERT INTO `choice_score` VALUES (4, 1, 'd', 'มะขามป้อม', 12);
INSERT INTO `choice_score` VALUES (5, 2, 'a', 'Green Hornet', 7);
INSERT INTO `choice_score` VALUES (6, 2, 'b', 'Green Lantern', 5);
INSERT INTO `choice_score` VALUES (7, 2, 'c', 'Super 8', 9);
INSERT INTO `choice_score` VALUES (8, 2, 'd', 'Superman Return', 10);
INSERT INTO `choice_score` VALUES (14, 3, 'a', 'hp', 10);
INSERT INTO `choice_score` VALUES (15, 3, 'b', 'Toshiba', 20);
INSERT INTO `choice_score` VALUES (16, 3, 'c', 'Sumsung', 5);
INSERT INTO `choice_score` VALUES (18, 4, ' a', 'งู', 1);
INSERT INTO `choice_score` VALUES (19, 4, 'a', 'กบ', 2);
ผิดอย่างไรช่วยดูให้หน่อยค่ะ ขอบคุณล่วงหน้าค่ะ
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2011-06-21 16:10:27 |
By :
Baitong_ch |
View :
903 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เท่าที่ดูจากโค้ด ผมว่า record ไม่น่าจะหายไปนะครับ เพราะว่าไม่มีการเรียกคำสั่ง delete เลยครับ ที่ว่าข้อมูลหายนี่ ดูจาก browser ที่ run php หรือดูจาก database โดยตรงครับ
|
|
|
|
|
Date :
2011-06-21 16:16:11 |
By :
Pangpondpuen |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
recore ไม่ได้หายค่ะ
มันหายแค่ฟิลด์ id อะค่ะ
หายออกจากฐานข้อมูลไปเลย ไม่ทราบว่าเป็นเพราะอะไรอะค่ะ
|
|
|
|
|
Date :
2011-06-21 16:36:24 |
By :
Baitong_ch |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|