$(document).ready(function() {
setInterval(function() {
$.ajax({
url: 'veritabani_kontrol.php',
method: 'GET',
success: function(response) {
if (response == 1) {
$('#checkbox').prop('checked', true)
} else {
$('#checkbox').prop('checked', false);
}
}
});
}, 1000);
});