|
|
|
การบันทึกข้อมูลแบบหลาย ๆ บรรทัด ต้องการให้ช่วยดู code หน่วยคับว่าผิดไหน |
|
|
|
|
|
|
|
code ชุดนี้เป็น form รับข้อสอบเข้ามาคับ แบบหลายๆข้อ (หลาย ๆ บรรทัด)
Code (PHP)
<!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");
mysql_query("SET NAMES utf8");
$strSQL = "SELECT * FROM testing";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="600">
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr bgcolor="#9966FF">
<th width="88" align="right">ข้อที่ 1. </th>
<td colspan="3" align="left"> <?=$objResult["question"];?></td>
</tr>
<tr bgcolor="#FFCCCC">
<td align="right">A </td>
<td align="left"> <?=$objResult["c1"];?></td>
</tr>
<tr bgcolor="#FFCCCC">
<td align="right">B </td>
<td align="left"> <?=$objResult["c2"];?></td>
</tr>
<tr bgcolor="#FFCCCC">
<td align="right">C </td>
<td align="left"> <?=$objResult["c3"];?></td>
</tr>
<tr bgcolor="#FFCCCC">
<td align="right">D </td>
<td align="left"> <?=$objResult["c4"];?></td>
</tr>
<tr bgcolor="#CCC">
<td colspan="4" align="right"> </td>
</tr>
<?
}
?>
</table>
<?
mysql_close();
?>
</body>
</html>
--------------------------------------------------------------------------------------------------------------------
ส่วน code ชุดล่างนี้เป็นการ save ข้อสอบจาก form ข้างบนคับ ที่มันเกิดปัญหา คือ ว่าเวลาเรา กด save แล้วมันไม่เข้า loop คับ ของการ insert into ข้อมูลเลยคับ มันรันข้ามไป echo Save Done เลย
Code (PHP)
<!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");
echo"dd";
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) or die(mysql_error());
}
}
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
|
|
|
|
|
|
Date :
2012-09-25 21:41:17 |
By :
bordindream |
View :
1166 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
print $strSQL ออกมาดูจิ
|
|
|
|
|
Date :
2012-09-25 22:24:11 |
By :
popypreaw |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|