If a form is actually being submitted across both of the scripts, it seems that it oughtta work...if you put stuff into a form, it must have an action attribute, a method attribute, and it must be submitted with some type of action link or button. That said, it's difficult to tell from what's posted here why it's not working. I don't see enough code to let me in on it.
Generally, if you want to have data available to a number of different scripts, you do one of these three things instead of pass-pass-pass, which can get pretty complex:
put it into a text file and read it again later.
put it into a database and read it again later.
store it in a cookie or session variable.
Assuming you're coding in a relatively recent version of PHP, you oughtta be able to:
session_start();
$_SESSION['info']=$info;
when you first set the variable, and then
session_start();
$info=$_SESSION['info'];
on any other page upon which you want to use the $info variable, and it will be available...the quid pro quos, of course, are do you really want to be calling session_start all the time, and is the data really that important....