form submit edildiğiden checkboxları on ve boş göndermesini değilde istediğim gibi yollamasını istiyorum.
elma checkbox < işaretliyse aktif < değilse pasif yazılmasını istiyorum.
js ile submit ediyorum
<script>
$(document).ready(function(){
$(document).on("submit","form#uye_kayit",function(e){
e.preventDefault();
var veri = new FormData(this);
$.ajax({
url:"islem.php",
data:veri,
dataType:"json",
method:"post",
contentType:false,
processData:false,
success:function(sonuc){
if (sonuc.ok) {
swal({
title: 'Başarılı',
text: sonuc.ok,
type: 'success',
timer: 3000,
}).html(sonuc.ok);
}else{
swal({
title: 'Hata',
text: sonuc.hata,
type: 'error',
timer: 3000,
}).html(sonuc.hata);
}
}
});
});
});
</script>