|
|
|
ทำไมมันเข้าฐานข้อมูล 2 ครั้งนั่งแก้มานานแล้วแต่ก็ยังไม่ได้[ช่วยดูให้หน่อยค่ะ] |
|
|
|
|
|
|
|
ทำไมมันเข้าฐานข้อมูล2ครั้ง[ช่วยดูให้หน่อยค่ะ]
Code (PHP)
for($i=1;$i<=(int)$_POST["hdnMaxLine1"];$i++)
{
if(isset($_POST["submit"]))
{
$a=$_POST["Column4_".$i];
$b=$_POST["Column5_".$i];
$sqlterm="INSERT INTO term(term_no,term_story) VALUES('$a','$b')";
$sqlqueryterm=mysql_db_query($dbname, $sqlterm);
echo"<br><font face=\"ms sans serif\" size=5>เพิ่มวาระแล้ว</font>";
for($j=1;$j<=(int)$_POST["hdnMaxLine2"];$j++)
{
if(isset($_POST["submit"]))
{
$d=$_POST["Column6_".$j];
$e=$_POST["Column7_".$j];
$sqlstory="INSERT INTO story(story_name,data) VALUES('$d','$e')";
$sqlquerystory=mysql_db_query($dbname, $sqlstory);
echo"<br><font face=\"ms sans serif\" size=7>เพิ่มstoryแล้ว</font>";
}
}
}
}
Tag : PHP, MySQL, JavaScript, Ajax, jQuery
|
|
|
|
|
|
Date :
2013-04-23 16:02:11 |
By :
ttmmoodd |
View :
734 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(int)$_POST["hdnMaxLine2"] มีค่าเท่าไหร่
|
|
|
|
|
Date :
2013-04-23 16:10:52 |
By :
pklangkua |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นี่คือสริปค่ะ
Code (JavaScript)
function CreateTerm()
{
var intLine = parseInt(document.form1.hdnMaxLine1.value);
intLine++;
var theTable = document.getElementById("tbExp1");
var newRow = theTable.insertRow(theTable.rows.length)
newRow.id = newRow.uniqueID
var newCell
//*** Column 1 ***//
newCell = newRow.insertCell(0);
newCell.id = newCell.uniqueID;
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><label>วาระที่ </label><INPUT TYPE=\"TEXT\" SIZE=\"5\" name=\"Column4_"+intLine+"\" day=\"Column4_"+intLine+"\" total=\"\"></center>";
//*** Column 2 ***//
newCell = newRow.insertCell(1);
newCell.id = newCell.uniqueID;
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><label>เรื่อง </label><INPUT TYPE=\"TEXT\" SIZE=\"80\" name=\"Column5_"+intLine+"\" day=\"Column5_"+intLine+"\" total=\"\"></center>";
document.form1.hdnMaxLine1.value = intLine;
}
//-------------------------------------------------------เพิ่มเรื่อง------------------------------------------------------//
function CreateStory()
{
var intLine = parseInt(document.form1.hdnMaxLine2.value);
intLine++;
var theTable = document.getElementById("tbExp1");
var newRow = theTable.insertRow(theTable.rows.length)
newRow.id = newRow.uniqueID
var newCell
//*** Column 1 ***//
newCell = newRow.insertCell(0);
newCell.id = newCell.uniqueID;
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><label>เรื่องที่ </label><INPUT TYPE=\"TEXT\" SIZE=\"5\" name=\"Column6_"+intLine+"\" day=\"Column6_"+intLine+"\" total=\"\"></center>";
//*** Column 2 ***//
newCell = newRow.insertCell(1);
newCell.id = newCell.uniqueID;
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<textarea name=\"Column7_"+intLine+"\" cols=\"88\" rows=\"10\" day=\"Column7_"+intLine+"\" day=\"Column6_"+intLine+"\" total=\"\"> </textarea>";
document.form1.hdnMaxLine2.value = intLine;
}
|
|
|
|
|
Date :
2013-04-23 16:15:07 |
By :
ttmmoodd |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1.มันเข้าที่เทเบิ้ลไหนสองรอบ term หรือว่า story
2.loop มันวนกี่รอบ
3.ลองดูที่เครื่องหมาย <= ของลูป for ลองเปลี่ยนเป็น = เฉย
|
|
|
|
|
Date :
2013-04-25 10:51:32 |
By :
naskw |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|