Cookie kullanımı
<?php
if(isset($_POST['checkbox'])) {
setcookie("girisbilgileri", $gelenid, time() + (60*60*24));
}
?>
<input type="checkbox" name="checkbox">
değeri alıyorum ama cookie oluşmuyor checkbox seçilmişse yapacak
[
<input type="checkbox" id="checkbox">
<script>
let checkbox = document.querySelector("#checkbox");
checkbox.addEventListener("change", () => {
<?=setcookie("girisbilgileri", $gelenid, time() + (60*60*24));?>
});
</script>
En basit yol bu ama senin hatan form içine almaman. Eğer form içine alırsanda şu şekilde
<?php
if(isset($_POST['checkbox'])) {
setcookie("girisbilgileri", $gelenid, time() + (60*60*24));
}
?>
<form action="" method="post">
<input type="checkbox" name="checkbox" />
</form>
İyi çalışmalar...