PayPal buy now button Value !

Discussion in 'PayPal' started by coldcoder, Apr 11, 2010.

  1. #1
    Hello dear friends,
    i've website and willing to add paypal as payment method just buy now button
    but the problem when i create buy now button from my account it gives me the code like this

    <input type="hidden" name="hosted_button_id" value="BS5B4KVLA6GE4"> 
    Code (markup):
    see the value is encrypted

    so what if i will change the item value later why shall i do create new button why just don't change the value to be like this

    <input type="hidden" name="hosted_button_id" value="17.99"> 
    Code (markup):
    or any ...
    is there any way i create buy now button with abilities to change the value anytime i want !

    thanks
     
    coldcoder, Apr 11, 2010 IP
  2. eSpenders.com

    eSpenders.com Peon

    Messages:
    1,567
    Likes Received:
    20
    Best Answers:
    0
    Trophy Points:
    0
    #2
    yes you can change the values
    I use PHP to display the values on some of mine
    the value does not have to be encrypted.

    <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="you@your.com">
    <input type="hidden" name="currency_code" value="USD">
    <input type="hidden" name="item_name" value="[COLOR="Red"]<?=$ITEM1?>[/COLOR]">
    <input type="hidden" name="amount" value="[COLOR="Red"]<?=$PRICE1?>[/COLOR]"
    <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
    </form>
    Code (markup):
    Hope that helps :D


    p.s. still waiting on reply :|
     
    eSpenders.com, Apr 11, 2010 IP