you have three possibilities:
1.) with GET: call the next page with an URL like this: page.php?var1=value1&var2=value2...
-> on the next page you get the content with $_GET['var1'] ...
2.) with POST: use a html form, give all input fields a name
<input type=text name=var1>
-> get these with $_POST['var1'] (instead of $var1)
3.) with Sessions, don't be bothered now 😉