ClkOfis
http://www.clkofis.com
Kullanıcı
-
Üyelik
03.10.2015
-
Yaş/Cinsiyet
30 / E
-
Meslek
Yazılım ve Tasarım
-
Konum
Bursa
-
Ad Soyad
E** Ç**
-
Mesajlar
228
-
Beğeniler
43 / 61
-
Ticaret
11, (%91)
$(document).on("change",".updateinput ", function () {
$.ajax({
url: URL,
type: 'POST',
success: function(e)
{
},
data: {guncelle: $(this).data('update')},
});
});
URL php
$exp = explode('-',$_POST['guncelle]);
$guncelle = $db->prepare("UPDATE $exp[0] SET $exp[1]=:sinav1 WHERE ogrenci_id=:ogrenci_id ");
$guncelle->execute(array(':sinav1'=>$exp[1] ,':ogrenci_id'=>$exp[2] ,));