<button id="a">A</button>
<button id="b">B</button>
<script>
a.onclick = ()=>send(1)
b.onclick = ()=>send(0)
function send (value) {
fetch("/hello/text.php", // путь к файлу свой укажите
{
method: "POST",
body: {sale: value}
})
}
</script>
<?php
// /hello/text.php или как там он у вас
$SALE = (bool) filter_input(INPUT_POST, 'sale', FILTER_SANITIZE_NUMBER_INT);
;
)this.style.outline
расчитан на то, что контекстом (this
) будет html элемент (кнопка по которой произошел клик).