I have this form see, and when they click on submit, or whatever, I need a variable to be sent to the next page. I have this
Code:
 
<form action="apps.php?form=application" method="post">
<input type="hidden" value="yes" name="agree">
<input type="submit" vlaue=submit" name="I Agree">
now that is all the variables I need. what happens when I push teh I agree button is that it loads the apps.php page but to the default class, it doesn't show the form application. I do see in the url it has something like this

.mysite.com/apps.php?submit=1+Iagree&agree=yes

soemthing to that nature. how do I make it so that it keeps the variable "yes" cause my application checks for this variable, and make the page load the application, if yes is true, so they can fill it out?