If you need to make a form send both POST and GET requests, how can you do so?
Just specify the GET data in the form URL.
<form method="POST" action="form.php?var1=1&var2=2&var3=3">
Check how the data is used in the receiving script,use $_GET and $_POST according to your exact needs