Ver Mensaje Individual
  #7 (permalink)  
Antiguo 31/10/2008, 13:44
Avatar de maxi_lance
maxi_lance
 
Fecha de Ingreso: julio-2006
Ubicación: Capital Federal
Mensajes: 220
Antigüedad: 17 años, 10 meses
Puntos: 2
Respuesta: Duda con checkbox dinamico

muchas gracias!
Hice una funcion que genera un input y mediante un foreach cheuquea si fue elegido o no tal input al recargar la pagina....

Código PHP:
function checkBoxArea ($name$value$variable$array) {    
    echo 
"<input name=$name type=checkbox value=$value";
    echo 
" style=background-color:#C7D2DB; border:#C7D2DB; ";
    if (
$variable){
        foreach ( 
$variable as  $v)  {
            if (
$v == "$value") {
                echo 
" checked='checked'";
            }
        }
    }
             
    echo 
"> $value ";
    echo 
"&nbsp;&nbsp;&nbsp;";