หรือ ใส่ ออปชั่นใน dropdownlist
<option value="newType">-- New Type --</option>
แล้ว ตรวจสอบจาก onchange
popup ขื้นมาให้คึย์ type ใหม่
Code (JavaScript)
var new_type= prompt("Please enter New Type", "New Type");
if( new_type!=null ){
$.ajax({ url: 'url', type: 'POST', data:{ action: 'insert_type', value: new_type}})
.done(function(msg){
// do after response
});
}
โดยให้ผู้ใช้กรอกข้อมูล book ที่ต้องการเพิ่มลงในฐานข้อมูล
โดยที่เวลากรอกข้อมูล type ผู็ใช้จะต้องกรอกข้อมูลที่เป็น name
แต่เวลาเก็บข้อมูลลงตารางbookจะต้องเป็น id
$sql1="insert into table1 set name_type='blabla' ";
$mysql->query($sql1) or die( $mysql->error . "<br>\n" . $sql1);
$type_id=$mysql->insert_id;
$sql2="insert into table2 set type_id=$type_id, blabla.... ";