Cita:
Iniciado por PIRRUMAN primero verifica como se usa el atributo checked
es decir escribelo tal cual
<input type="checkbox" checked="checked"/>
ó
<input type="checkbox" checked/>
una vez indentificado puedes hacer tu condicion
<?php
if($valor==1)
{$checked ="la sintaxis que necesites";}
elseif($valor==0)
{
$checked=0;}
?><input type="checkbox" <?php echo $checked;?>><?php
Es asi <input type="checkbox" checked/>
pero no te entendi mucho