Why it says "This method not allowed on this url" What is wrong with coding here? <p> <FORM METHOD="post" ACTION="index.html"> <INPUT TYPE="submit" VALUE="VIEW ALL COLLECTIONS"> </FORM>
[1] Would need to see the server side script. [2] one should be careful using -- method=post. Get is less invasive. Q...
<FORM METHOD="post" ACTION="index.html"> Here you are using HTML page as action, which is not allowed for <form> tag, i think so. the action should be passed to some dynamic page containg serverside script like asp or php hope it helps
it's a strange one. do you see that error on the browser? I thnik we need to see the rest of your code. and; An ".html" file can also be parsed as php or asp (i.e. dynamic) if the server has the right configuration. It's not just about the file extension. Besides, html does not include a mechanism to check "action" url. you can evet set a .jpg there and it will open the image file after submission.