Hi,
How to pass variable to php script from a html form? I use php4.1.1 the following code dose not work.
---------------entry.html---------------
<body>
<form method="post" action="update.php">
Enter Your Name
<input type="text" name="Name"></input><br>
<input type="submit" name="submit" value="click"></input>
</form>
</body>
----------update.php------------------
<?php
echo "Hello, $Name";
?>