For the next page, you can use
echo $_REQUEST['name'];
Or better yet, store it in a session variable...
$_SESSION['name'] = $_REQUEST['name'];
echo $_SESSION['name']
Using the session variable, you can then move to another page, and still access the name by using...
echo $_SESSION['name']