I'm not entirely sure what you want, but if the form is using the post method, you can add variables to the form action URL so that they are available in the $_GET array:
<form action="some_page.php?var1=<?php
echo htmlspecialchars($var1, ENT_QUOTES);
?>" method="post">
It's probably cleaner though to use a hidden form field for that sort of thing.