Código PHP:
if(isset($AdicionarSede))
{
header("Location: addempresasede.php?idEmpresa=$idEmpresa");
}
if(isset($CrearNueva))
{
header("Location: addempresa.php");
}
Código PHP:
$empresa=$_POST['idEmpresa'];
$query = mysql_query("select nombre from empresa where idEmpresa=$empresa", $link);
while($row=mysql_fetch_row($query)){
echo $row[0];
}
agradezco cualquier aporte
chao