i dont know if ur problem has been solved but i will try to describe in very simple terms how to send a vaiable from one page to the next...
Demo 1 a simple hyperlink will send the vaiablr $demovar
with the value"hello this is the message"
<!-- page 1 page1.html -->
<a href="http://www.target_url_to.com/pagename.php?domovar=hello this is the message">click here</a>
<!-- end page 1 html -->
<!-- start page 2 pagename.PHP -->
<?php
//take the variable(s) from the url
@extract($_GET);
// print the variable
print $demovar;
?>
<!-- end page 2-->
demo 2
sending the input of a form to the next page and displaying the content on the screen
<!-- page 1 page1.html -->
<form action="http://www.urltosite.com/pagename.php" method="get">
<input type="text" name="name" value="enter name here"><br>
<input type="text name="age" value="enter you age here">
</form>
<!-- end page 1 html -->
<!-- start page 2 pagename.PHP -->
<?php
//take the variable(s) from the url
@extract($_GET);
// print a simple message making use of the variables
print "Welcome $name from you input i know that you are $age years of age";
?>
<!-- end page 2-->