checkbox durumu "kontrol"

0 Cevap

Ben arama üzerinde formu ve aşağıdaki tablo arama sonuçları ile birlikte bir sayfa var. Arama formu i "Bu kategoride ara" onay kutusunu var. Ben varsayılan kontrol için ne yapıyorum:

if(!isset($_SESSION['inthiscat'])){
    $_SESSION['inthiscat'] = 'on' ;
    $checked = 'checked';
}
$_GET['inthiscat'] = $_SESSION['inthiscat'];

checkbox code : INPUT type="checkbox" name="inthiscat"<?=$checked?>. Link to next page of results index.php?inthiscat=$_GET['inthiscat']. So the problem is when i uncheck "Search in this category" its still checked when i going to next page of results. How to fix it and what i'm doing wrong? Session startet of course.

0 Cevap