|
|
|
ช่วยดูให้หน่อยค่ะ การ insert ข้อมูล โดยการดึง id มาจากตารางแรก แล้ว insert ลงอีกตาราง โดยให้เก็บ id ของตารางแรกด้วย |
|
|
|
|
|
|
|
table position
-position_id
-name
-detail
table apply
-apply_id
-position_id
-name
ตาราง position เก็บข้อมูลอยู่แล้ว เมื่อเลือกตำแหน่ง มากรอกข้อมูลผู้สมัครและ insert ลงตาราง apply ในตาราง apply จะต้องเก็บ position_id ด้วย
ลักณษะจะเหมือนกับกระทู้นี้เลยค่ะ
https://www.thaicreate.com/php/forum/087146.html
หน้าฟอร์ม ตัดมาบางส่วน
<table width="100%" border="0" cellspacing="0" cellpadding="3">
<tr>
<td width="25%" align="right">
<span>ตำแหน่งที่สมัคร :<br />
Position Applied For : </span></td>
<td>
<input name="APosition" type="text" id="APosition" size="43" value="<?=$objResult["position_name"];?>" disabled="disabled"/></td>
</tr>
<tr>
<td align="right" valign="top"><span>เงินเดือนที่ต้องการ :<br />
Expected Salary : </span></td>
<td>
<input name="ASalary" type="text" id="ASalary" size="43" />
</td>
</tr>
</table>
หน้า save
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?
include("conn.php");
$date = date('Y-m-d H:i:s');
$sql2 = "insert into apply
(positionID,positionName,name,age,salary) values
('".$_GET["positionID"]."', '$APosition', '$name','$age','$salary')"; // กำหนดคำสั่ง SQL เพื่อเพิ่มข้อมูลแบบคีย์ในคำสั่ง SQL
echo "$sql2";
$result = mysql_query($sql2) or die(mysql_error());
// ปิดการติดต่อฐานข้อมูล
mysql_close();
echo "<script>";
echo "alert(\"Complate\");";
echo "window.location=\"positions.php\"";
echo "</script>";
?>
Tag : PHP, MySQL, HTML/CSS
|
|
|
|
|
|
Date :
2013-10-03 17:31:21 |
By :
AnnYZaa |
View :
749 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
code มันแปลกๆ ส่งค่ารับค่าแปลกๆ มีแบบเต็มๆ ไหมครับของ 2 form นี้
จะได้ตอบให้ถูก
|
|
|
|
|
Date :
2013-10-03 21:30:35 |
By :
นิรนาม |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|