I have just a quick question. Does someone know why this html page (a form) does not work?
<html>
<head></head>
<body>
<form method=POST action=show-query-params>
<p>
<input type=text name=foo id=foo size=20 value=nameee />
</p>
<p>
<input name=submit type=submit value=submit />
<input type=reset value=Reset />
</p>
</form>
</body>
</html>
When I click submit, the page "http://localhost:8080/show-query-params" is opened but with no parameters. Thanks in advance!