Código PHP:
echo "<form action='solicitud_clave.php' method=post>";
echo "<table width=850 border=1 align='center' bordercolor='#000000'>";
echo "<tr bgcolor=#EFE856>";
echo "<td colspan=150 class=style1>Codigo</td>";
echo "<td colspan=350 class=style1>Descipcion</td>";
echo "<td colspan=250 class=style1>Licencia</td>";
echo "<td colspan=50 class=style1>Fecha</td>";
echo "<td colspan=25 class=style1>Marcar</td>";
echo "</tr>";
while ($row=mysql_fetch_array($cSql)) {
echo "<tr bgcolor=#B9CCF0>";
echo "<td colspan=150 class=style1>".$cCodInv=$row["MOV_CODIGO"]."</td>";
echo "<td colspan=350 class=style1>".$cDescri=$row["INV_DESCRI"]."</td>";
echo "<td colspan=250 class=style1>".$cNumLic=$row["MOV_CODCOM"]."</td>";
echo "<td colspan=50 class=style1>".$dFecha=$row["MOV_FECHA"]."</td>";
echo "<td colspan=25><input type=\"radio\" name=\"resultado[]\" value=\"$cNumLic\"></td>";
echo "<input type=\"hidden\" name=\"cCodInv\" value=\"$cCodInv\">";
echo "</tr>";
}//fin del while
echo "</table>"."<br>";
echo "<table align=center>\n";
echo "<tr>";
echo "<td><input type=submit name=enviar value='Aceptar'></td>";
echo "<td><input type=reset name=borrar value='Borrar'></td>";
echo "</tr>";
echo "</table>\n";
echo "</form>";