Well, you use a simple form to submit the data to the next page.
<form method="post" action="script.php">
<input name="text" type="text">
<br>
<input type="submit" name="Submit" value="Submit">
</form>
Then on the next page, in this case 'script.php', just print the transfered data.
<p>Some HTML stuff and text.</p>
<p>Now print the transfered data, <?php print($_POST['text']); ?></p>
You notice that the form is submited with the 'post' method? Since it is submited that way all the fields are in an array called $_POST. To access any of the transfered fields you use $_POST['field']. Where 'field' is, is the name of the field from the previous page, ex: <input name="text" type="text">Also, you can use the GET method, in that case just switch POST with GET in the print statement. Also, if you use the GET method you can use URL's to transfer info, ex: http://domain.com/script.php?text=test
Hope this helps!