an easy way to solve this issue is to create a session and store the information in it, then call it whenever you want
example :
<file1.php>
session_start();
$_SESSION['test']=value;
<file2.php>
session_start();
echo $_SESSION['test'];
<file3.php>
session_start();
echo $_SESSION['test'];
this is the way most sites pass user credentials, you might want to check the manual help on sessions, but this way you can pass info to the pages without the use of the "<form>" tag...
for passing arrays and other objects through sessions use the serialise functions
hope the info helped you