I am trying to create a donation using the PayPal button and add a custom selection with a quantity. I tried to add something like this:
<label for="amount">Select the amount you wish to donate:</label> <input type="hidden" name="currency_code" value="EUR" /> <select id="amount" name="amount"> <option value="25.00">€25.00</option> <option value="35.00">€35.00</option> <option value="50.00">€50.00</option> <option value="75.00">€75.00</option> <option value="100.00">€100.00</option> </select>
but PayPal just doesn't get the selected value. What am I missing? What user variables should be placed in the button generator form?
source share