mmm dejame y te lo pongo
pagina.html
Código HTML:
<form action="pagina1.php" method="post">
<input type="text" name="variable">
<input type="submit" value="Enviar">
</form>
Pagina 1.php
Código PHP:
<?
$variable=$_Post['variable'];
//aqui haces tus sentencias que tengas que hacer
//despues tambien puedes hacer un header("location:pagina2.php?variable=$variable"); o tambien puedes poner un link asi
echo "<a href=pagina2.php?variable=$variable>Actualizar</a>";
?>
Espero y me hayas entendido