Hi
I have the following code which works perfect.
You will see at the moment the amount is an input field.
I can get the value of the a session into the field and this works when i hit submit but if i make the field not visible or disabled it doesnt take through the value.
Any ideas?
is there another way of doing this?
Thanks
I have the following code which works perfect.
Code:
<form action="[URL unfurl="true"]https://www.paypal.com/cgi-bin/webscr"[/URL] method="post" id="payPalForm">
<input type="hidden" name="item_name" value="quickbabysit.com Booking Fee" />
<input type="hidden" name="cmd" value="_xclick"/>
<input type="hidden" name="no_note" value="1"/>
<input type="hidden" name="business" value="your@paypalaccount.com"/>
<input type="hidden" name="currency_code" value="GBP"/>
<input type="hidden" name="no_shipping" value="0"/>
<input type="hidden" name="lc" value="GB"/>
<input type="hidden" name="return" value="[URL unfurl="true"]http://demo.quickbabysit.com/parents/confirmation.aspx"/>[/URL]
Booking Fee:<input name="amount" type="text" id="amount" size="20" runat="server" class="enquiryfield" />
<input type="submit" name="Submit" value="Submit"/>
</form>
</div>
You will see at the moment the amount is an input field.
I can get the value of the a session into the field and this works when i hit submit but if i make the field not visible or disabled it doesnt take through the value.
Any ideas?
is there another way of doing this?
Thanks