Código HTML:
<h4><strong>Desea Vajilla:</strong> <input id="elegidoVajilla" type="checkbox" name="elegidoVajilla"/></h4> <?php // $vajilla = new sfWidgetFormInputCheckbox(); //echo $vajilla->render("elegidoVajilla"); ?> <br> <h5><i>Vajilla Especial</i></h5> <ul class="checkbox_list"> <?php $vajillaEspecial = Doctrine_Query::create() ->select('m.*') ->from('Material m') ->where('m.precioServicio!=', NULL) ->fetchArray(); foreach ($vajillaEspecial as $esp): $indi = $esp['id']; $nomb[$indi] = $esp['nombre'] . '- Costo:' . $esp['precioServicio']; ?> <li> <input id="elegidoV_<?php echo $indi?>" type="checkbox" value="<?php echo $indi?>" name="elegidoV[]" > <label for="elegidoV_<?php echo $indi?>"><?php echo $nomb[$indi]?></label> </li> <?php endforeach;?> </ul> <hr/>
Gracias