Ok, what im trying to do is create a simple paypal page that asks for the name, email address and a 'username' - all information needs parsing into the email that gets sent to the seller and also (ideally) appear on the details page of the transaction in the paypal account. If someone could provide some feedback/help/support on the following code it would be highly appriciated. The code: <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="payments@address.com"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="item_name" value="Smart Submit Tool 12 Month Subscription"> <input type="hidden" name="amount" value="49.99"> <input type="hidden" name="return" value="http://www.voisd.com/success"> <input type="hidden" name="cancel_return" value="http://www.voisd.com/failure"> <input type="hidden" name="undefined_quantity" value="0"> <input type="hidden" name="no_shipping" value="0"> <input type="hidden" name="no_note" value="1"> <table width="349"> <tr> <td width="136" class="left">Name</td> <td width="201"><input name="os0" type="text" class="input"></td> </tr> <tr> <td class="left"><input type="hidden" name="on1" value="username" maxlength="75"> Username</td> <td><input name="os1" type="text" class="input"></td> </tr> <tr> <td class="left"><input type="hidden" name="on2" value="email" maxlength="200"> Email Address </td> <td><input name="os1" type="text" class="input"></td> </tr> <tr> <td class="left"> </td> <td><input type="image" src="http://www.paypal.com/en_US/i/btn/x-click-but01.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td> </tr> </table> </form> Code (markup): Thanks
If you still need some help try Paypal Dev - some Paypal developers hang out there and you might be able to get a few solutions.