I found the answer to the problem, but it was quite involved...
On my conversion page, the code was:
foreach($POST as $key => $value)
{
$SESSION['$key'] = stripslashes($value);
}
The problem was so hard to figure out until I did another foreach loop in page 3 to determine whether my vars were passing. They weren't, so I came back to page 2. This is what I found...
If I removed the single quotes from this line, all was repaired... on this page...
$_SESSION[$key] = stripslashes($value);
Then I had to go to page 3 and make all of my output look like this...
if it was in double quotes, such as the following, the quotes had to be like this...
echo "'$_SESSION[varname]'"
not like this...
echo "$_SESSION['varname']"
If it was like normal, it would give undefined Index errors...
So, long story solved, but no thanks to documentation... Who knew that you had to have single quotes in a different spot if you were passing it through double quotes...
Thanks again for your help... Hope this helps someone in the future...