Thank you. I have another problem with Form.
I have this code in my first formpage01.php
And here's my code in hiUser.php
The ERROR when I hit the Submit button is:
Thanks in advance
I have this code in my first formpage01.php
Code:
<form method="post" action="hiUser.php"> Please type your name: <input type="text" name="userName" value="" /> <br /> <input type="submit" /> </form>
And here's my code in hiUser.php
Code:
<?php print "<h3>Hi there, $userName</h3>"; ?>
Notice: Undefined variable: userName in C:\wamp\www\php Practice\hiUser .php on line 13
Comment