R
Robert
I have a page in a folder named signup. I want to use a submit button to
return to index.html
This code results in an incorrect address error when the button is clicked:
<form method="POST" action="../index.html">
<p align="center"><input type="submit" value="Return"></p></form>
However, if I use a hyperlink instead of the button, it works fine:
<p><a href="../index.html">Return</a></p>
Why does the form fail whereas the hyperlink works?
Many thanks, Robert
return to index.html
This code results in an incorrect address error when the button is clicked:
<form method="POST" action="../index.html">
<p align="center"><input type="submit" value="Return"></p></form>
However, if I use a hyperlink instead of the button, it works fine:
<p><a href="../index.html">Return</a></p>
Why does the form fail whereas the hyperlink works?
Many thanks, Robert