- I have installed PHP4.2.2 with Apache 1.3.26 on Solaris7.
And now I have problems with getting data from form.
I have 2 pages test.html and welcome.php as following:

----------------test.html----------------------------------------------------
<form "userDetails" method="post" action="welcome.php">
    Enter your Name: <br>
    <input type="text"  value="" name="name">
    <input type="submit" value="Enter" name="welcome">
</form>
------------------------------welcome.html---------------------------------

?php 
    print  $name ;
?>

===============================

Then I cannot get the value of input name.
But if I write " print $_POST['name'];" or " print $HTTP_POST_VARS['name'];", it's ok.

Is there something wrong when I install PHP?
Thanks a lot.


Reply via email to