Anon
08-02-2000, 02:48 PM
Hello,
I'm in the process of learning PHP. I've set up PHP4 on my dev machine currently running Win98. I'm fairly solid with ASP but want the cross platform and open source benefits of PHP.
Set up of PHP4 and mySQL seemed to go fine. Hello World worked fine. However, when I decided to pass some info from one page to another I ran into problems.
The output from the following code doesn't include the parameter passed from a form on the previous page although I'm sure it should.
<?php
echo ("<p>Thankyou " .$FName. "We appreciate your time</p>");
?>
All I get is
Thankyou We appreciate your time.
Any thoughts ? The PHP is obviously being processed. I copied some Wrox code and that does exactly the same i.e. is processed but ignores what I would term the QueryString data.
Dave
I'm in the process of learning PHP. I've set up PHP4 on my dev machine currently running Win98. I'm fairly solid with ASP but want the cross platform and open source benefits of PHP.
Set up of PHP4 and mySQL seemed to go fine. Hello World worked fine. However, when I decided to pass some info from one page to another I ran into problems.
The output from the following code doesn't include the parameter passed from a form on the previous page although I'm sure it should.
<?php
echo ("<p>Thankyou " .$FName. "We appreciate your time</p>");
?>
All I get is
Thankyou We appreciate your time.
Any thoughts ? The PHP is obviously being processed. I copied some Wrox code and that does exactly the same i.e. is processed but ignores what I would term the QueryString data.
Dave