|
|
|
ช่วยดู Code บันทึกข้อมูลทีละเยอะ ๆ เรื่อง admin ต้องการพิมพ์ข้อสอบประกอบไปด้วย คำถาม,ตัวเลือก,คำตอบ ลงฐานข้อมูลที่ละหลายๆ ข้อ โดยการ กด ปุ่ม submit |
|
|
|
|
|
|
|
พี่ๆคับช่วยดู code ให้ผมหน่อย คับเรื่อง admin ต้องการพิมพ์ข้อสอบประกอบไปด้วย คำถาม,ตัวเลือก,คำตอบ ลงฐานข้อมูลที่ละหลายๆ ข้อโดยการ กด ปุ่ม submit ทีเดียวข้อสอบที่พิมพ์ไว้ หลายๆข้อก็บันทึกลงฐานข้อมูลเลย ปัญหาคือ มันไม่บันทึกเลย
Code
<!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" />
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
//-->
</script>
<style type="text/css">
body {
background-color: #CCC;
}
</style>
</head>
<body>
<form action="save_testing.php" name="frmAdd" method="post">
Select Line :
<select name="menu1" onChange="MM_jumpMenu('parent',this,0)">
<?
for($i=1;$i<=50;$i++)
{
if($_GET["Line"] == $i)
{
$sel = "selected";
}
else
{
$sel = "";
}
?>
<option value="<?=$_SERVER["PHP_SELF"];?>?Line=<?=$i;?>" <?=$sel;?>><?=$i;?></option>
<?
}
?>
</select>
<table align="center" width="600">
<?
$line = $_GET["Line"];
if($line == 0){$line=1;}
for($i=1;$i<=$line;$i++)
{
?>
<tr bgcolor="#9966FF">
<th width="88" align="right">ข้อที่ <?=$i;?>. </th>
<td colspan="3" align="left"> <textarea name="question" cols="50"></textarea></td>
</tr>
<tr bgcolor="#FFCCCC">
<td align="right"> </td>
<td width="332" align="left"> ตัวเลือก</td>
<td width="33"> </td>
<td width="47" align="center">เฉลย</td>
</tr>
<tr bgcolor="#FFCCCC">
<td align="right">ตัวเลือก <?=$i;?>.1</td>
<td align="left"> <input type="text" name="c1" size="50"></td>
<td> </td>
<td align="center"><input type="checkbox" name="answer" value="1"></td>
</tr>
<tr bgcolor="#FFCCCC">
<td align="right">ตัวเลือก <?=$i;?>.2</td>
<td align="left"> <input type="text" name="c2" size="50"></td>
<td> </td>
<td align="center"><input type="checkbox" name="answer" value="2" /></td>
</tr>
<tr bgcolor="#FFCCCC">
<td align="right">ตัวเลือก <?=$i;?>.3</td>
<td align="left"> <input type="text" name="c3" size="50"></td>
<td> </td>
<td align="center"><input type="checkbox" name="answer" value="3" /></td>
</tr>
<tr bgcolor="#FFCCCC">
<td align="right">ตัวเลือก <?=$i;?>.4</td>
<td align="left"> <input type="text" name="c4" size="50"></td>
<td> </td>
<td align="center"><input type="checkbox" name="answer" value="4" /></td>
</tr>
<tr bgcolor="#CCC">
<td colspan="4" align="right"> </td>
</tr>
<?
}
?>
</table>
<table align="center">
<tr><td><input type="submit" name="submit" value="submit"><td><input type="reset" name="reset" value="reset"></td>
<input type="hidden" name="hdnLine" value="<?=$i;?>"></td></tr>
</table>
</form>
</body>
</html>
อันนี้เป็นของการ Save ข้อมูล
Code
<!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" />
</head>
<body>
<?
require("config.php");
$objDB = mysql_select_db("management");
for($i=1;$i<=$_POST["hdnLine"];$i++)
{
if($_POST["question$i"] != "")
{
$strSQL = "INSERT INTO testing ";
$strSQL .="(question,c1,c2,c3,c4,answer) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["question$i"]."','".$_POST["c1$i"]."', ";
$strSQL .="'".$_POST["c2$i"]."' ";
$strSQL .=",'".$_POST["c3$i"]."','".$_POST["c2$i"]."', ";
$strSQL .="'".$_POST["answer$i"]."') ";
$objQuery = mysql_query($strSQL);
}
}
echo "Save Done. Click <a href='Untitled-4.php'>here</a> to view.";
mysql_close();
?>
</body>
</html>
Tag : PHP, MySQL, Ms SQL Server 2005, Ms SQL Server 2008, Ms SQL Server 2012, JavaScript
|
|
|
|
|
|
Date :
2012-09-24 21:33:22 |
By :
bordindream |
View :
1568 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo ที่ส่งออกมาดูก่อนไหมครับ
|
|
|
|
|
Date :
2012-09-24 22:16:55 |
By :
dekkuza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือมันไม่ลงฐานข้อมูลเลย คับ เวลากด save แล้ว มันก็ขึ้น Save Done. ตามปกติ
แบบนี้ อ่ะคับ
|
|
|
|
|
Date :
2012-09-24 22:32:17 |
By :
bordindream |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$objQuery = mysql_query($strSQL) or die(mysql_error());
เอา error มาดูครับ ถ้าไม่มี error แสดงว่ามันไม่เข้า Loop Insert ครับ
|
|
|
|
|
Date :
2012-09-25 05:36:48 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันไม่ขึ้น error คับ สงสัยไม่เข้า Loop นี้คับ if($_POST["question$i"] != "") พี่ๆ พอจะมีวิธีไหนที่ทำให้มัน เข้า loop ได้มั้ยคับ T-T ขอบคุณมากๆๆ เลยคับ
|
ประวัติการแก้ไข 2012-09-25 21:00:49
|
|
|
|
Date :
2012-09-25 11:05:20 |
By :
bordindream |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ต้องการอยู่เหมือนกันคับ code ลักษณะนี้เลย พี่ๆ ช่วยตอบหน่อยคับ ขอบคุณคับ
|
|
|
|
|
Date :
2012-09-25 14:37:42 |
By :
บอล |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำได้แล้วคับ
|
|
|
|
|
Date :
2012-09-26 04:57:40 |
By :
bordindream |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|