Hi!
Well on the "next page" you can do something like this:
<head></head><body>
Your name: <?=$name?><br>
Your e-maio: <?=$email?><br>
<form action="">
<?
for $i=0; $i<=$questions; $i++
echo "<input type=\"text\" name=\"question$i\"><br>";
?>
<input type="submit" value="Send">
Basic idea, the names of the fields in the form on previous page, turn up as variables on the next.
Example:
Page1:
<input type="text" name="name">
User hits submit..(to page2)
Page2:
<? echo $name; ?> will print the submitted name.
<?=$name?> is the same as <? echo $name; ?>