I want to echo my result from first page on the second page and then get the same ruslt from the second page and echo it on the third page
page 1:
<form action="page2.php" method="post">
<input type="text" name="name" />
<input type="submit" />
</form>
page2:
echo $_POST['code'];
What should I add in my second page and to write in the thrid one?
page 1:
page 2:
page 3: