Hi
  My name is Nilesh.I at present learning PHP, i have successfully installed
PHP along with Apache .Everything works fine.But i have the following
problem.
 i have created a html page which has a text area with the following code in
it.
<html>
<head> </head>
<body>
<FORM METHOD=GET ACTION="text.php">
 WHO IS UR FAVORATE AUTHOR ?
<INPUT NAME="Author" TYPE="TEXT">
<br>
<br>
<INPUT TYPE = SUBMIT>
</FORM>
</body>
</html>

and then i have written a php script file text.php with the following code

<html>
<head> </head>
<body>
your favorate author is :
<?php
echo $Author;
?>
</body>
</html>
  when i view the text.html in my browser and type in the name of the author
,i am expected to get the result " your favorate author is <author name>
 but this dosent seem to happen. Can  u help me ?

Nilesh Parmar



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to