|
|
|
ผมจะทำ checkbox โดยเมือเราไปติ้กถูกที่ checkbox มันจะทำการบันทึกลง ฐานข้อมูลเลยโดยไม่ต้อง กด submit ครับ |
|
|
|
|
|
|
|
ต้องใช้ ajax&jquery ทำการ action ไปที่ url ครับ
ลองค้นหาบทความเก่าๆน่าจะมีอยู่ครับ
|
|
|
|
|
Date :
2013-08-21 10:23:00 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มีตัวอย่างใหมครับ
|
|
|
|
|
Date :
2013-08-21 10:42:52 |
By :
tangsupap |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
form
Code (PHP)
<input type="checkbox" id="chk" point="1" />
<script src="admin/bootstrap/js/jquery-1.10.2.min.js"></script>
<script>
$(function(){
$('#chk').click(function(){
var no=$(this).attr('point');
$.ajax({url:"update.php",
async:false,
cache:false,
global:false,
type:'POST',
data:'Point='+no,
success: function(result){
var obj=jQuery.parseJSON(result);
if(obj['status'] == 'success'){
alert(obj['msg']);
}
}
});
});
});
</script>
update
Code (PHP)
<?
$Point=mysql_real_escape_string($_POST['Point']);
$arrResult=array();
if($Point != 0){
$arrResult['status']="success";
$arrResult['msg']="ระบบทำการอัพเดทเรียบร้อย";
}
echo json_encode($arrResult);
?>
|
|
|
|
|
Date :
2013-08-21 11:00:12 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|