Necesito generar a partir de un form asi como este:
Código HTML:
<form action="" method="get"> <input type="checkbox" name="serv1" value="1" /> <b>Aire Acondicionado</b><br> <input type="checkbox" name="serv2" value="1" /> <b>Planta Eléctrica de Emergencia</b><br> <input type="checkbox" name="serv3" value="1" /> <b>Caja de seguridad</b><br> <input type="checkbox" name="serv4" value="1" /> <b>Casino</b><br> <input type="checkbox" name="serv5" value="1" /> <b>Desayuno</b><br> <input type="checkbox" name="serv6" value="1" /> <b>Gimnasio</b><br> <input type="checkbox" name="serv7" value="1" /> <b>Agua Caliente</b><br> <input type="checkbox" name="serv8" value="1" /> <b>Bañera</b><br> <input type="checkbox" name="serv9" value="1" /> <b>Servicio de Lavandería</b><br> <input type="checkbox" name="serv10" value="1" /> <b>Llaves magneticas</b><br> <input type="checkbox" name="serv11" value="1" /> <b>Nevera ejecutiva</b><br> <input type="checkbox" name="serv12" value="1" /> <b>Servicio Telefónico</b><br> <input type="checkbox" name="serv13" value="1" /> <b>Piscina</b><br> <input type="checkbox" name="serv14" value="1" /> <b>Acceso a la playa</b><br> <input type="checkbox" name="serv15" value="1" /> <b>Restaurant</b><br> <input type="checkbox" name="serv16" value="1" /> <b>Salon de conferencias</b><br> <input type="checkbox" name="serv17" value="1" /> <b>Secador de pelo</b><br> <input type="checkbox" name="serv18" value="1" /> <b>Television</b><br> <input type="checkbox" name="serv19" value="1" /> <b>Television por cable / satelital</b><br> <input type="checkbox" name="serv20" value="1" /> <b>Acceso a Internet Inalámbrico</b><br> <input type="submit" value="Probar" /> </form>
En PHP serial algo asi:
Código PHP:
<form action="" method="get">
<?php
include "conex.php";
$main_result0 = @mysql_query("select * from services",LINK);
while($row = @mysql_fetch_array($main_result0)){
printf("<input type=\"checkbox\" name=\"serv%s\" value=\"1\" /> <b>%s</b><br>\n",$row["ID"], $row["name"]);
}
$totserv = mysql_num_rows($main_result0);
$service = array();
for($a=0;$a<$totserv;$a++){
$b = $a+1;
if($_GET["service$b"]){$opt = 1;}else{$opt = 0;}
$service[$a] = $opt;
}
?>
<input type="hidden" name="services" value="<? echo implode(",",$service); ?>">
<input type="submit" value="Probar" />
</form><br />
Lo intente usando el metodo
Código:
pero las 2 neuronas que me quedan buenas no dieron para mas, espero puedan ayudarme... Saludos! this.form.services.value=checkChoice(this);