Hi guys,
It looks as post method isn't working on my PHP4 installation. I tried the following script :
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<form name="form1" method=post action="sendmail.phtml">
<p> E-mail ID
<input type="text" name="email" size="40">
</p>
<p> Name :
<input type="text" name=realname size="30">
</p>
<p>
<input type="text" name=feedback size="60" >
</p>
<p>
<input type="submit" name="Submit" value="Submit">
<input type="reset" name="Reset" value="Reset">
</p>
</form>
</div>
</body>
</html>
Sendmail.phtml is:
<?php
Print "Your Name is $realname";
Print "Your message is $feedback.";
?>
And the result is without the variables showing up, which are passed in the form.
Help Please.
Thanks in advance,
Rick