I've seen questions like this but none really answer this specific question. Can you include get variables in the form tag's action attribute? For example:
<form action="script.php?id=4" method="get">
<input type="text" name="thing" value="temp">
<input type="submit">
</form>`
This would theoretically result in the get request: script.php?id=4&thing=temp
I'm aware that you can simply do this:
<form action="script.php" method="get">
<input type="hidden" name="id" value="4">
<input type="text" name="thing">
<input type="submit">
</form>`
But I'm curious as to if the previous method is at all possible.