:eek: Hi guys. I am a newbie here. Having problems with php.
will be greatfull if anybody gives any solution.
I made a html page with the folloeing code which just takes the information of a persons name and another php page which will display it. But not working..
here is the html code..
<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>
I saved it as text.html
now i made another page in the same folder called text.php with the following code:
<HTML>
<HEAD></HEAD>
<BODY>
Your favourite author is :
<?php
echo $Author
?>
</BODY>
</HTML>
The problem is html page work just fine, but that php page isn't showing anything, no error nothing. what to do?