let check = 0 // хочу передать эту переменную в php
let data = {
variable: "stringVariableOrOther",
}
let jsonData = JSON.stringify(data);
$.ajax({
url: 'Yout/Url/Path".
method: "post",
data: jsonData,
dataType: 'json',
contentType: 'application/json; charset=utf-8',
success: (xhr) => {
// Code here
},
error: (xhr) => {
// Code here
}
})