I have scoured the forums, and while they've helped me put my form together, something in the redirect must be wrong. When I click the submit button, the data goes to the table as it should, but the redirect takes me to paypal.com, not my product payment page. I'm including my code below.
The Hidden Values (Placed in the "Extra fields Data" box)
And the target URL is: https://www.paypal.com/cgi-bin/webscr
Where am I going wrong? Thanks!
The Hidden Values (Placed in the "Extra fields Data" box)
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="amanda@xxx.com">
<input type="hidden" name="item_name" value="Test Webinar from GGC">
<input type="hidden" name="item_number" value="webinar1">
<input type="hidden" name="amount" value="1.00">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="return" value="http://www.xxx.com">
And the target URL is: https://www.paypal.com/cgi-bin/webscr
Where am I going wrong? Thanks!