Aqui tienes, he probado esto y me funciona:
formulario
Cita: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script>
function envia(form)
{
nombre=form.nombre.value;
alert(nombre);
location.href=destino.php?dato=nombre;
}
</script>
</head>
<body>
<form name="formulario" action="destino.php" method="post" onsubmit="return envia(this)">
<table>
<tr>
<td><input type="text" name="nombre" /><input type="submit" value="Guardar" /></td>
</tr>
</table>
</form>
</body>
</html>
pagina de destino(aca puedes guardar el dato)
Cita: <?php
$dato=$_POST['nombre'];
echo"$dato";
echo" pagina destino";
echo"<script>alert(\"$dato\")</script>";
?>
saludos