knzo25:
Sin necesidad de utilizar sesiones puedes hacer lo siguiente ->
votos.html
<form action="votos.php" method="POST">
Su Cuenta: <input type="text" name="nombre" />
<input type="submit">
</form>
votos.php
$cuenta= $_POST["nombre"];
echo $cuenta;
echo "<form action=\"votos2.php\" method=\"POST\">
Su Cuenta: <input type=\"text\" name=\"nombre\" value=\"$cuenta\" />
<input type=\"submit\">
</form>";
votos2.php
$cuenta= $_POST["nombre"];
echo $cuenta;
Saludos
Y espero te ayude
Franco
![Afirmando](http://static.forosdelweb.com/fdwtheme/images/smilies/afirmar.gif)
P.S. Pruebalo!!!