Código PHP:
<?php
$sql="select a.sectores,a.mcc,a.mnc,b.lac,a.rac,a.ci,a.id_sectores,b.id_lac from sectores a, lac b where a.clave_lac=b.id_lac and a.clave_estacion=88";
$result=mysql_query($sql,$link);
?>
<form method="POST" action="modifica_celid.php">
<?php
while($salida=mysql_fetch_array($result))
{
$clave=$salida[6];
$clave2=$salida[7];
}
mysql_free_result($result);
?>
<input type="submit" name="accion" value="Modificar" align="middle">
<input type="hidden" name="clave" value="<?php echo $clave;?>">
<input type="hidden" name="clave2" value="<?php echo $clave2;?>">
Código PHP:
<?php
echo $clave;
echo "<br>";
echo $clave2;
?>
y gracias por adelantado