Ver Mensaje Individual
  #3 (permalink)  
Antiguo 15/04/2020, 17:26
Dreyfuz
 
Fecha de Ingreso: diciembre-2013
Mensajes: 10
Antigüedad: 10 años, 4 meses
Puntos: 4
Respuesta: agregar OR en sintaxis

Código HTML:
<?php
    $texto = '';
    if( $row_empleados['permiso'] === 'No' || $row_empleados['permiso'] === NULL )
        $texto = 'checked="checked"';
?>
<input type="radio" name="permiso" value="No" <?php echo $texto; ?> ><font size="2">No</font> 
Podría ser así?