GET parameters go in the action url, POST parameters in the form's inputs
<form method="post" action="/somepage.php?get=parameters&are=here">
<input type="text" name="postParameter" value="this value will be sent as POST">
... etc
</form>
OR
also you can store you value in session and can access it inside post method.
OR
you can create hidden input field and can embed you parameters here
<input name="hash" type="hidden" value="<?php echo htmlspecialchars($_GET['hash'], ENT_QUOTES); ?>">
<pre><input name="email" type="hidden" value="<?php echo htmlspecialchars($_GET['email'], ENT_QUOTES); ?>">