Here's the problem, PHP just doesn't want to accept variables passed from a previous page. I thought it may just be from post method forms, so I tried the following test page:
<?
echo ("This is a test to see if variables are being passed.<br>");
echo ("First: ".$first."<br>");
echo ("Second: ".$second."<br>");
?>
Called the page test3.php and typed this for the url:
test3.php?first=1&second=2
Here's the results:
This is a test to see if variables are being passed.
First:
Second:
So, what the heck did I miss? Is there a config --enable that I need to set? I'm using 4.0.6 and used --enable-track-vars. Very frustrating, any help is greatly appreciated.
-Kevin