Ver Mensaje Individual
  #8 (permalink)  
Antiguo 03/07/2012, 09:12
pzenteno22
 
Fecha de Ingreso: junio-2012
Mensajes: 17
Antigüedad: 11 años, 10 meses
Puntos: 0
Respuesta: Validar checkbox en php

No me funcionó de la forma que decías, yo ya la tenia así también. Envío el código html:


<h2>PANEL DE CONTROL DE BITACORA DE TI</h2>
{$paginador}<br />
<form method="post" name="fpanel" id="fpanel" action="index.php?op=udt">
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="boxt">
<tr>
<th colspan="8" scope="col">Estado al: </th>
</tr>
<tr>

<th>Area</th>
<th>Servicio</th>
<th>Aplicación</th>
<th>Soporte Hardware y Software Base</th>
<th>Estado </th>
<th>Revisión</th>
<th colspan="2" rowspan="1">Estados</th>
</tr>
{section name=numero loop=$servicio}
{strip}
<tr bgcolor="{cycle values='#FFFFFF,#DFF4D2'}">
<td>{$servicio[numero].servicio_area}</td>
<td>{$servicio[numero].servicio_servicio}</td>
<td>{$servicio[numero].servicio_aplicacion}</td>
<td>{$servicio[numero].servicio_aplicacion}</td>
<td><a href="index.php?op=udt&act=estados_udt&id={$servic io[numero].servicio_id}">{$servicio[numero].img1|align:c}</a></td>
<td><input type="checkbox" value="1" name="servicio_estado" id="servicio_estado"/></td>
<td><itemIcon="images/menu_panel.gif"><a href="index.php?op=udt&act=cambiar_estados_udt&id= {$servicio[numero].servicio_id}">OK</a></td>
<td><itemIcon="images/menu_panel.gif"><a href="index.php?op=udt&act=estados_udt&id={$servic io[numero].servicio_id}">NO OK</a></td>

</tr>
{/strip}
{/section}

</table>
</form>
{$paginador}