Probá primero con el GET, y fijate bien o decime que te devuelve en el URL...
Código PHP:
Ver original<form action="Fac_1_A.php" method="GET">
</br>
<p>
<table width="318" border="0" align="center">
<tr>
<td width="155" align="center" style="font-size:13px; color: #666666">Rif de la empresa a facturar:</td>
<td width="52"><input name="ID" id="ID" type="text" style="font-size:10px; color: #666666" align="center" size="13"/></td>
<td width="24">
<input type="submit" name="Submit" value="Crear Factura" style="font-size:11px; color: #666666" align="center" />
</td>
</tr>
</table>
<table width="100%" border="1" align="center">
<tr bgcolor="#999999">
<td width="15%" align="center" style="font-size:13px; color: #666666">
<b>ID</b></td>
<td width="72%" align="center" style="font-size:13px; color: #666666">
<b>Descripción</b></td>
<td width="13%" align="center" style="font-size:13px; color: #666666">
<b>Evaluar</b></td>
</tr>
<?php
$i = 0;
$i++;
?>
<tr>
<td style="font-size:13px; color: #666666">
<input value='<?php echo $row["ID"];?>' name='iden' id='iden' size='1' style='font-size:12px; color: #666666' readonly='readonly'/>
</td>
<td style="font-size:13px; color: #666666">
<?php echo $row["descripcion"];?>
</td>
<td style="font-size:13px; color: #666666">
<input type='checkbox' name='$i' value='<?php echo $row[$i];?>'/>"<?php echo $i;?>
</td>
</tr>
<?php
//mysql_free_result($registros);
//mysql_close($conexion);
}
?>
</table>
</form>