|
|
|
รบกวนผู้รู้ช่วยผมหน่อยครับพอดีผมทำโปรเจค ระบบยืม-คืน ครุภัณฑ์ออนไลน์ครับ |
|
|
|
|
|
|
|
ใช้ ajax ในการร้องขอ หมายเลข id ล่าสุด แต่ ทำแบบนี้ ไม่ค่อยถูกต้อง
เพราะถ้า ทำงานหลายคน อาจได้หมายเลข ซ้ำกันได้
ถ้าจะทำ เริ่มต้นไม่ควรสนใจ id ให้ส่งคำสั่ง insert ขอมูล แล้วค่อยเอา insert_id ที่ได้มาแสดง
Code (JavaScript)
<fom>
< ......... Field Data ต่างๆ ที่ต้องการ ....... >
<button type=button>เพิ่มข้อมูล</button>
</form>
<script src="jquery.js"></script>
<script>
$(document).ready(function(){
$('button').click(function(e){
$.ajax( url: 'your_php_code.php', type: 'POST', data: { para1: 'test', para2: 'test2'}}
.done( function( insert_id ){
alert( insert_id);
});
});
});
</script>
|
|
|
|
|
Date :
2015-03-03 08:39:52 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช่ครับให้ insert ไปก่อนแล้วค่อยดึงไอดีมาแสดง
|
|
|
|
|
Date :
2015-03-03 16:14:55 |
By :
sakuraei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณพี่ ๆ ที่มาตอบให้นะครับ
|
|
|
|
|
Date :
2015-03-03 18:07:06 |
By :
nuttwud08 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|