IS ther any way to put the value of a form into a hidden value in the action page.
Say I had a simple form
<form action="form2.php" method="post">
<input type="radio" name="variable" value="mine">
<input type="submit" value="submit">
then the PHP page is another form, and I want to enter $variable into the form
<input type="hidden" name="variablebox" value="$variable">
Would that work?