I have a page that reads posted variables...
if(isset($_POST['sectionform'])) {blahblahblah}
currently the variables are posted from a dropdown list on the same page.
I would like to have a couple links set up that reloads the page while posting a couple variables. If I were using the _GET method I would write it out like this...
<a href ="index.php?sectionform=1&moduleform=2">link</a>
Is there an alternative way of making this link where it POSTs the variables?