Someone told me that I can accept payments in my MB account from people who do not have any MB account by creating a donation button. Is that true? Can anyone tell me how to create any such button? Your help will be much appreciated, Thanks
Try out with below form, Hope it helps you <!–moneybookers form–> <form action=â€https://www.moneybookers.com/app/payment.pl†method=â€post†target=â€_blankâ€> <fieldset> <legend>Donate with Moneybookers</legend> <input type=â€hidden†name=â€pay_to_email†value=â€you@yourdomain.com“> Please enter the amount you would like to give<br> <input type=â€hidden†name=â€return_url†value=â€http://www.yourdomain.com/gifts/thanks.htm“> <input type=â€hidden†name=â€language†value=â€ENâ€> <select name=â€currency†size=â€1″> <option>Select a currency</option> <option value=â€USDâ€>US dollar</option> <option value=â€GBPâ€>GB pound</option> <option value=â€EURâ€>Euro</option> <option value=â€JPYâ€>Yen</option> <option value=â€CADâ€>Canadian $</option> <option value=â€AUDâ€>Australian $</option> </select> <br>amount: <!–<input type=â€hidden†name=â€amount†value=â€5.00″>–> <input type=â€text†name=â€amount†value=â€5.00″ size=â€10″> <input type=â€hidden†name=â€detail1_description†value=â€donation to help support anhblog.net“> <input type=â€hidden†name=â€detail1_text†value=â€donation to help support anhblog.net“> <br> <br> <input type=â€submit†alt=â€click to make a donation to anhblog.net†value=â€Donate!†/> </fieldset> </form> Code (markup):
Thanks for giving me this code, but the fact is that I had already found it by Googling. But I am still facing problems.......when I paste this code on my site ot blog, it says there are HTML errors. And secondly, I'm sure its not to be pasted as it is, where to write my MB ID in it etc.?
Working Donation Code button. Replace 'Your email Address of Moneybookers' with your moneybooker email id. <form action="https://www.moneybookers.com/app/payment.pl" method="post" target="_blank"> <fieldset> <legend>Donate with Moneybookers</legend> <input type="hidden" name="pay_to_email" value="Your email Address of Moneybookers"> Please enter the amount you would like to give<br> <input type="hidden" name="return_url" value="http://www.yourdomain.com/gifts/thanks.htm"> <input type="hidden" name="language" value="EN"> <select name="currency" size="10"> <option>Select a currency</option> <option value="USD">US dollar</option> <option value="GBP">GB pound</option> <option value="EUR">Euro</option> <option value="JPY">Yen</option> <option value="CAD">Canadian $</option> <option value="AUD">Australian $</option> </select> <br>amount: <!–<input type="hidden" name="amount" value="5.00">–> <input type="text" name="amount" value="5.00" size="10"> <input type="hidden" name="detail1_description" value="donation to help support"> <input type="hidden" name="detail1_text" value="donation to help support us"> <br> <br> <input type="submit" alt="click to make a donation" value="Donate!" /> </fieldset> </form> Code (markup):
I really thank you for your help. But even with this code an HTML error is being shown. Seems the problem is with the "!" at the end of the code. Any solutions?
Strange no error for me in Firefox, Chrome and Internet Explorer. what was the error. Replace 'Donate!' with 'Donate' in <input type="submit" alt="click to make a donation" value="Donate!" /> Code (markup): If still error continues, paste the actual error screenshot.
The exact error was 'HTML Code error" and this part of the code was highlighted: <!–<input type="hidden" name="amount" value="5.00">–> But anyway I published it anyway, and it seems that it has worked. Thanks for your help!
I found the problem. Just removed this line and will be no error. <!–<input type="hidden" name="amount" value="5.00">–> Error occur because of this '->' It should be like '-->'