How to use POST and not GET

Finally i found the solution on autosubmit code on php, the code (in case if someone need it ) is:

<form name="myform" method="post" action="recieve.php">
<input type="hidden" name="user" value="<?php echo $user ?>">
<script language="JavaScript">document.myform.submit();</script></form>