si alguien me pudiese ayudar se lo agradeceria.
Código
<table> <tr> <td></td> <td style="font-weight:bold">ID</td> <td style="font-weight:bold">Cliente</td> <td style="font-weight:bold">Fecha</td> <td style="font-weight:bold">Horas</td> <td style="font-weight:bold">Dirección</td> <td style="font-weight:bold">Estado</td> <td style="font-weight:bold">Persona Encargada</td> <td style="font-weight:bold">Contrato</td> <td style="font-weight:bold">Fecha Cierre</td> <td></td> </tr> <? $nit = $_POST['nit']; $query = mysql_query("select * from servicios_facturacion WHERE estado = 'Cerrada' AND empresa = '$nit' ORDER BY id desc"); $i=0; echo "<tr class='fila_".($i%2)."'>"; echo "<td><input type='checkbox' name='s".$i."' id='s".$i."' value='$row[id]'></td>"; echo "<td> $row[id] </td> "; echo "<td>".$cliente."</td> "; echo "<td> $row[fecha_entrada] </td> "; echo "<td>".$horanueva." </td> "; echo "<td>".$dir." </td> "; echo "<td> $row[estado] </td> "; echo "<td>".mysql_result($query_sql,0,"p_nombre")." ".mysql_result($query_sql,0,"s_nombre")." ".mysql_result($query_sql,0,"p_apellido")." ".mysql_result($query_sql,0,"s_apellido")." </td> "; echo "<td> $row[contrato] </td> "; echo "<td> $row[fecha_cierre] </td> "; echo "<form name='formfactura' action='Facturar_pdf.php' method='post'>"; echo "<input type='hidden' name='id' value='$row[id]'>"; echo "<td><input type='submit' value='Facturar'></td>"; echo "</form>"; echo "</tr>"; $i++; } echo "</table>";