Donation form to transfer variables

I have this page
http://teamluke.net/donate.php
In the form I have a few questions,.
I have the following radio buttons

<label class="btn btn-circle btn-primary active"> <input type="radio" name="options">$5 </label> <label class="btn btn-primary"> <input type="radio" name="options">$10 </label> <label class="btn btn-primary"> <input type="radio" name="options">$20 </label> <label class="btn btn-primary"> <input type="radio" name="options">$30 </label> <label class="btn btn-primary"> <input type="radio" name="options">$50 </label> <label class="btn btn-primary"> <input type="radio" name="options">$100 </label>

How do I save the radio box selected so I can transfer it to the next page (whatever the forms action is)

I did it

<label class="btn btn-circle btn-primary active"> <input type="radio" name="Amount" value="5">$5 </label> <label class="btn btn-primary"> <input type="radio" name="Amount" value="10">$10 </label> <label class="btn btn-primary"> <input type="radio" name="Amount" value="20">$20 </label> <label class="btn btn-primary"> <input type="radio" name="Amount" value="30">$30 </label> <label class="btn btn-primary"> <input type="radio" name="Amount" value="50">$50 </label> <label class="btn btn-primary"> <input type="radio" name="Amount" value="100">$100 </label> It just acts like any input field then...

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.