EchoAlertcom
IS-IT--Management
Hi,
I am just learning PHP and am stuck on something that is embarrasingly simple.
Form Page:
Form Processing Page:
I have tried with Get and Post. When I run it i get the error:
Notice: Undefined variable: Author in C:\Inetpub\ on line 5
Thank you for your help.
Sincerely,
Steve
I am just learning PHP and am stuck on something that is embarrasingly simple.
Form Page:
Code:
<html><head></head>
<body>
<form Method="post" action="text.php">
Who is your favorite author?<br>
<input name="Author" type="text">
<br><br>
<input type="submit">
</form>
</body></html>
Form Processing Page:
Code:
<html><head></head>
<body>
Your favorite author is:
<?php
echo $Author;
?>
</body>
</html>
I have tried with Get and Post. When I run it i get the error:
Notice: Undefined variable: Author in C:\Inetpub\ on line 5
Thank you for your help.
Sincerely,
Steve