I am running PHP-4.2.3, and am getting an Undefined Variable error when trying to do this:
The HTML:
<HTML>
<HEAD></HEAD>
<BODY>
<FORM METHOD=GET ACTION="text.php">
Who is your favourite Author?
<INPUT NAME="Author" TYPE="TEXT">
<BR>
<BR>
<INPUT TYPE=SUBMIT>
</FORM>
</BODY>
</HTML>
The PHP:
<HTML>
<HEAD></HEAD>
<BODY>
Your favorite author is:
<?php
echo $Author;
?>
</BODY>
</HTML>
i can't seem to get the php to recognize "www.nothing.com/whatever.php?Author=whatever as a variable, can anyone see why? thanx
-mike