I am trying to figure out how I can get the value of the ?thread on POST. So if ?thread=12; I want to return that value when the post is submitted and then save it in a variable.
Thread's Value
<?php foreach($threads as $thread) :?>
<td><a href = "?thread=<?php echo $thread['id'];?>">Thread Name</a></td>
<?php endforeach ; ?>
Form
<form action = "." method = "post">
<input type = "submit" value = "submit">
</form>