I have a confirmation script where I show the user their decision to delete and want to let them either proceed or go back. However, I am having trouble. In my script I have the following code:
echo "<form name=delete_form action=delete.php method=POST>";
echo "<input type=submit value=Proceed>";
echo "</form>\n";
echo "<form name=go_back action=delete.html method=POST>";
echo "<input type=submit value='Go Back'>";
echo "</form>\n";
But IE is telling me the following...
HTTP 405 - Resource not allowed
Internet Explorer
Why?