![]() |
|
| |||||||
| Notices |
| BlueVoda Tips, Tricks and Shortcuts Know a great BlueVoda (or Web design) tip or trick? Share it with the world here. Become famous for your brilliance! Please, No Questions or Problems! |
![]() |
| | LinkBack | Thread Tools |
|
#31
| |||
| |||
| Hi Navaldesign, Thanks, I though of that if a visitor chooses the a certain the description will be selected automatically but I don't know how to do it, second, how can I keep the button to a selected one. I do appreciate your help seems your are the guru. :)) janeth |
|
#32
| ||||
| ||||
| Quote:
If you like it, contact me and i will send you the file.
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#33
| |||
| |||
| Thank you very much, Navaldesign, you are such a nice person, very helpful. I love to have a copy of what you did. |
|
#34
| ||||
| ||||
| Contact me through my form so i can email the file to you.
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#35
| |||
| |||
| Hi Navaldesign, I did fillout your form, iyour reply form is very nice,how did you make in table format. Thanks and I'll be happy if you can share it. |
|
#36
| ||||
| ||||
| This is a bit complicated. It requires sending html email and hardcoding the mail content. I do that on a professional basis.
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#37
| |||
| |||
| Thanks a lot with code you sent though but have a fe problem, I cant go through my paypal account it always say incorect formatted amount item. I tried everything that I know but still do the same, maybe I missing sonething on the HTML I'm not sure. Kindly take a look again on your spare time pls. www.millarefoundation.com/payment.php for my prevous question: Yes, I agree with that it is a complicated one and I noticed also the one that you created on the payment.php is a hardcoded amount. I hope will learn more as I am venturing myself in website development. I really appreciate your willingness to help. |
|
#38
| ||||
| ||||
| Hi check your paypal button code. Also, you could change he settings in the form so that the radio buttons start from 1 instead of 0 . This way it will NOT default to the first choice as it does now. In that case make the first radio NOT selected
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#39
| |||
| |||
| Hi Navaldesign, I finally finished my form, just a few error on the quotation part o the html, you are an angel in finishing this portion of the website. Thank you very much. |
|
#40
| |||
| |||
| My turn to ask for help with this button. Can you look at www.vacations-afloat.com/payments.html and tell me where i am going wrong. I can't figure out how to make the initial value work without displaying their values. Thanks for your anticipated help Michael michael@vacations-afloat.com |
|
#41
| ||||
| ||||
| You have published the page as html. Please read the instructions, you need to publish it as php
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#42
| |||
| |||
| Thanks for that, the mistake was in the menu buttons which were pointing at an .html page and not the .php one. Next question, we sell vactaions and therefore each transaction is a different value, hence the need for your custom button. We also sell in 3 currencies, US Dollars, British Pounds and Euros, can I add the ability to select currency to the cutom buton? If so how do i do tis? Many thanks Michael |
|
#43
| ||||
| ||||
| You can add in the form ALL the parameters of the PayPal button: amount, item descriptin, item nr., amount, currency, etc. The code has to be changed acordingly, and the form fields must reflect the code elements. So, change the button code to : Code: <?
if ($amount != 0){
?>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="you@yoursite.com">
<input type="hidden" name="item_name" value="="<? echo $_POST['item_name']; ?>">
<input type="hidden" name="item_number" value="">
<input type="hidden" name="amount" value="="<? echo $_POST['amount']'; ?>">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="return" value="http://www.yoursite.com/returnpage.php">
<input type="hidden" name="currency_code" value="<? echo $_POST['currency'];?> ">
<input type="hidden" name="lc" value="US">
<input type="hidden" name="bn" value="PP-BuyNowBF">
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but02.gif" border="0" name="submit" alt="Make your payments with PayPal. It is free, secure, effective.">
<img alt="" border="0" src="https://www.paypal.com/it_IT/i/scr/pixel.gif" width="1" height="1">
</form>
<?
}
?>
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#44
| |||
| |||
| I am obviously being very stupid about this i now get an error: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' in /home/xdqsufol/public_html/payments.php on line 280 Might be easier if i paid you to do this for us |
|
#45
| ||||
| ||||
|
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#46
| ||||
| ||||
| Quote:
|
|
#47
| ||||
| ||||
| |