Hi!
Can anyone help me! I get this error when I try to post forms OFFLINE using Apache web server. Most likely it is some error in some setting/configuration. Can anyone tell me what this error is due to likely?
Method Not Allowed
The requested method POST is not allowed for the URL /vluv/process.php.
Apache/1.3.9 Server at localhost Port 80
quiz.php contains: (WHICH CONTAINS THE FORM)
<head>
</head>
<body>
<FORM ACTION="process.php" METHOD="Post">
First Name:<INPUT TYPE=text NAME=first VALUE="">
Last Name:<INPUT TYPE=text NAME=last VALUE="">
Email:<INPUT TYPE=text NAME=email VALUE="">
<INPUT TYPE="submit" VALUE="Send Form">
</FORM>
</body>
process.php contains:
<?php
echo ("Helo");
?>
PLZ HELP!!