|
|
|
Php บันทึกข้อมูลแบบวนลูปลงฐานข้อมูลไม่ได้ครับ รบกวนผู้รู้ช่วยดูให้หน่อยครับ |
|
|
|
|
|
|
|
code หน้าฟอร์มเก็บข้อมูล
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" />
<title>ระบบบริหารจัดการโครงการ</title>
<script language="javascript">
function CreateNewRow()
{
var intLine = parseInt(document.frmMain.hdnMaxLine.value);
intLine++;
var theTable = document.all.tbExp
var newRow = theTable.insertRow(theTable.rows.length)
newRow.id = newRow.uniqueID
var item1 = 1
var newCell
//*** Column 1 ***//
newCell = newRow.insertCell(0)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"5\" NAME=\"Column1_"+intLine+"\" VALUE=\"\"></center>"
//*** Column 2 ***//
newCell = newRow.insertCell(1)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"5\" NAME=\"Column2_"+intLine+"\" VALUE=\"\"></center>"
//*** Column 3 ***//
newCell = newRow.insertCell(2)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"5\" NAME=\"Column3_"+intLine+"\" VALUE=\"\"></center>"
//*** Column 4 ***//
newCell = newRow.insertCell(3)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"5\" NAME=\"Column4_"+intLine+"\" VALUE=\"\"></center>"
//*** Column 5 ***//
newCell = newRow.insertCell(4)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"5\" NAME=\"Column5_"+intLine+"\" VALUE=\"\"></center>"
//*** Column 6 ***//
newCell = newRow.insertCell(5)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"5\" NAME=\"Column6_"+intLine+"\" VALUE=\"\"></center>"
//*** Column 7 ***//
newCell = newRow.insertCell(6)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"date\" SIZE=\"5\" NAME=\"Column7_"+intLine+"\" VALUE=\"\"></center>"
document.frmMain.hdnMaxLine.value = intLine;
}
function RemoveRow()
{
intLine = parseInt(document.frmMain.hdnMaxLine.value);
if(parseInt(intLine) > 0)
{
theTable = (document.all) ? document.all.tbExp :
document.getElementById("tbExp")
theTableBody = theTable.tBodies[0];
theTableBody.deleteRow(intLine);
intLine--;
document.frmMain.hdnMaxLine.value = intLine;
}
}
</script>
</head>
<body>
<form name="frmMain" method="post" action="pr_process.php">
<table width="100%" border="1" id="tbExp">
<tr>
<td><div align="center">ลำดับ</div></td>
<td><div align="center">รายการ</div></td>
<td><div align="center">รายละเอียด</div></td>
<td><div align="center">ปริมาณ</div></td>
<td><div align="center">หน่วย</div></td>
<td><div align="center">ราคากลาง</div></td>
<td><div align="center">วันที่ใช้</div></td>
</tr>
</table>
<input type="hidden" name="hdnMaxLine" value="0">
<input name="btnAdd" type="button" id="btnAdd" value="+" onClick="CreateNewRow();">
<input name="btnDel" type="button" id="btnDel" value="-" onClick="RemoveRow();">
<input name="Submit" type="submit" /></form> </td>
</body>
</html>
Code บันทึกครับ
Code (PHP)
<html>
<head>
<title>test insert</title>
</head>
<body>
<?php
include'connect.php';
for($i=1;$i<=$_POST["hdnMaxLine"];$i++)
{
if($_POST["Column1$i"] != "")
{
$strSQL = "INSERT INTO pr_detail";
$strSQL .="(pd_id,num,pd_list,pd_detail,pd_unit,pd_meter,pr_price,date_use) ";
$strSQL .="VALUES ";
$strSQL .="('','".$_POST["Column1$i"]."','".$_POST["Column2$i"]."', ";
$strSQL .="'".$_POST["Column3$i"]."' ";
$strSQL .=",'".$_POST["Column4$i"]."','".$_POST["Column5$i"]."',,'".$_POST["Column6$i"]."', ";
$strSQL .="'".$_POST["Column7$i"]."') ";
$objQuery = mysql_query($strSQL);
}
}
echo "Save Done.";
mysql_close();
?>
</body>
</html>
ผิดพลาดตรงไหนช่วยดูให้หน่อยครับ พอดีผมไม่เคยทำแบบวนลูป
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2015-10-23 14:43:36 |
By :
ecom490 |
View :
1121 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รอๆๆผู้รู้ช่วยไขปัญหาครับ
|
|
|
|
|
Date :
2015-10-23 17:02:24 |
By :
ecom490 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
echo $strSQL;
$objQuery = mysql_query($strSQL) or die(mysql_error());
มันแสดงอะไรมาบ้างครับ
|
|
|
|
|
Date :
2015-10-24 15:23:47 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|