|
|
|
ช่วยดูโค้ดชุดนี้ให้หน่อยคับพี่ จะดึงค่ามาลง textbox แล้วส่งไป database |
|
|
|
|
|
|
|
ทำเป็นแบบนี้ดูครับ เปลี่ยนค่า textbox
Code (PHP)
<input type="text" name="name[]">
เวลาใส่ข้อมูลก็
for($i=1;$i<=$_POST["hdnLine"];$i++)
{
if($_POST["student_id"][$i] != "")
{
$sql = "INSERT INTO student_test(student_id,student_name,sex) VALUES ('".$_POST["student_id"][$i]."','".$_POST["student_name"][$i]."','".$_POST["sex"][$i]."')";
$query = mysql_query($sql);
}
}
ลองดูก่อนครับ
|
|
|
|
|
Date :
2011-03-26 01:03:01 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$_POST["hdnLine"]
ต้องรับจาก action="add_student.php?hdnLine=values[]" ไม่ใช่หรือครับ
|
|
|
|
|
Date :
2011-03-26 01:16:44 |
By :
thongtae |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$sql = "INSERT INTO student_test(student_id,student_name,sex) VALUES ('".$_POST["student_id$i"]."','".$_POST["student_name$i"]."','".$_POST["sex$i"]."')";
$query = mysql_query($sql);
echo $sql;
ลอง echo ดูว่ามันทำ Statement นี้หรือเปล่าครับ
|
|
|
|
|
Date :
2011-03-26 07:26:13 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|