elianecpa 0 Denunciar post Postado Março 5, 2013 Bom dia pessoal, meu problema é o seguinte, tenho esta rotina, gostaria que no lugar "-" o campo fosse desabilitado. IF ($conativ > 0 and $conativ < 2) { $ativ2 = '-'; }elseif($ativ2m == null && $nota2 == 0) { $ativ2 = ''; }else{ $ativ2 = $nota2; } obrigada Compartilhar este post Link para o post Compartilhar em outros sites
shini 318 Denunciar post Postado Março 5, 2013 pode explicar melhor? Compartilhar este post Link para o post Compartilhar em outros sites
DevMulti 4 Denunciar post Postado Março 5, 2013 Mas o seu campo é criado naquela parte ali? O que você pode fazer é: IF ($conativ > 0 and $conativ < 2) { $CampoDesabilitado = true; }elseif($ativ2m == null && $nota2 == 0) { $ativ2 = ''; }else{ $ativ2 = $nota2; } E no campo: <input type="text" <?php echo ($CampoDesabilitado==true?'disabled="disabled"': false) ?> /> Compartilhar este post Link para o post Compartilhar em outros sites