我希望将我的 HTML 表单中的参数添加到不同的网站,而不是当用户单击提交时我的。我希望他们转到该页面上的结果。请告诉我如何做到这一点。现在我有下面的代码,但它只是将参数添加到提交时所在的页面。
<form name="find-homes">
Min Price: <input type="text" name="lp">
Max Price: <input type="text" name="hp">
<input type="submit" value="Submit" method="POST" action="http://wwww.different-website-not-mine.com">
</form>