|
|
|
ผมต้องการเพิ่มอาการเสียจาก text box แล้วกดเพิ่มจไปขึ้นข้างล่าง คล้ายกับตะกร้าสินค้า |
|
|
|
|
|
|
|
PHP MySQL Add/Insert Multiple Record
|
|
|
|
|
Date :
2013-03-08 06:08:55 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมต้องการกรอกข้อมูลใส่ text box แล้กดเพิ่ม
แล้ว อาการเสียจะเพิ่มทีละอัน
แล้วค่อยกดตกลง ทำไงดีครับ
|
ประวัติการแก้ไข 2013-03-08 16:30:09
|
|
|
|
Date :
2013-03-08 16:27:31 |
By :
montree123 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>Untitled Document</title>
</head>
<body>
<form id="form1" name="form1" target="fix_frame" method="post" action="">
<label>
<input type="text" name="name" id="name" />
</label>
<input type="hidden" name="jobid" value="เอาจ๊อบไอดีมาใส่ตรงนี้ค่ะ" />
<input type="submit" name="submitButton" id="button" value="เพิ่ม" />
</form>
</br>
<iframe name="fix_frame" src="fix_items.php" width="900" height="200"></iframe>
</body>
</html>
fix_items.php
<form id="form2" name="form2" method="post" action="">
<table width="258" border="1">
<tr>
<td width="69">ลำดับ</td>
<td width="140">อาการเสีย</td>
<td width="27">วิธีการ</td>
</tr>
<?php
if(isset($_POST["submitButton"],$_POST["name"],$_POST["jobid"]) && !empty($_POST["name"]) && !empty($_POST["jobid"])){
$sql="insert into tb(jobid,name) values('{$_POST["jobid"]}','{$_POST["name"]}') ";
$result = mysql_query($sql) or die(mysql_error());
$n=1;
$sql = "select * from tb where jobid='{$_POST["jobid"]}' ";
$result = mysql_query($sql) or die(mysql_error());
while($data=mysql_fetch_assoc($result)){
echo "<tr>
<td>$n</td><td>{$data["name"]}</td>
<td>แก้ไข</td>
</tr>";
$n++;
}
</table>
<input type="submit" name="button2" id="button2" value="ตกลง" />
</form>
<?php } ?>
|
|
|
|
|
Date :
2013-03-09 17:07:37 |
By :
survivor |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเอาค่าไปเก็บใน session array ลองดูครับ
|
|
|
|
|
Date :
2013-03-10 12:46:14 |
By :
jackkichan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|