Hi, I just began to learn php and I have te following code. How can I get the input field value in the php script? Because my script doesn't work. $UserName is always an empty string.
<?php if ($submit == "click"){ echo "Hello, $UserName"; } else{ ?> <html><body> <form method="post" action="input.php3"> Enter Your Name <input type="text" name="UserName"></input><br> <input type="submit" name="submit" value="click"></input> <? echo "Hello, $UserName"; ?> </form> </body></html> <? } ?> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php