You can use the Fiddler or Browser plugin, for example FireFox Tamper Data .
Or you can simply create a form and submit it from any .HTML page:
<form action="TestPage.html" method="POST"> <input name="name1" value="value1" /> <input name="name2" value="value2" /> <input type="submit" value="POST!" /> </form>
source share