Could someone help me out with this one.
I want to pass data from text box on PAGE1 to PAGE2, then onto the final page where it should display the data.
PAGE 1
<head>
<title>Test</title>
</head>
<body>
<form method="POST" action="p-4-1.php">
Nickname: <input type="text" name="Nickname">
<input type="submit"
</form>
</body>
PAGE 2
<head><title>Test page</title></head>
<body>
<form method="post" action="final.php">
<input type="hidden" name="text" value="<?php $Nickname ?>">
<input type="submit" value="send data">
</form>
</body>
PAGE 3
<head></head>
<body>
<?php echo "$Nickname"; ?>
</body>