2016-08-17 1 views
1
<form name="myform" action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post"> 
    <div id="other_element"></div> 
    <input type="hidden" name="cmd" value="_xclick-subscriptions"> 
    <input type="hidden" name="business" value="<?php echo $adminpaypal; ?>"> 
    <input type="hidden" name="currency_code" value="USD"> 
    <input type="hidden" name="item_name" value="Monthly Subscription"> 
    <input type="hidden" name="a3" value="5.00"> 
    <input type="hidden" name="p3" value="1"> 
    <input type="hidden" name="t3" value="M"> 
    <input type="hidden" name="src" value="1"> 
    <input type="hidden" name="sra" value="1"> 
    <input type="hidden" name="notify_url" value="<?php echo $paypal_notify; ?>" id="payment-notify" /> 
    <!-- Display the payment button. --> 
    <input name="return" value="<?php echo $paypal_return; ?>" type="hidden"> 
    <input type="image" src="" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"> 
</form> 

월 단위 구독을위한 paypal 양식을 만들었습니다. 구독 후에는 "구독 ID"가 나타납니다. 이제는 구독 취소 버튼을 만드는 중입니다. 링크에서 구독 ID를 전달하여 구독 취소 버튼을 만들 수 있습니까?링크 구독시 ID를 통해 경상금을 취소 할 수 있습니까?

답변

0

구독 단추 작성자을 사용하여 구독을 만든 경우 다음 단계를 수행 할 수 있습니다.

저장된 버튼으로 이동하면 "동작"- "보기 코드"를 클릭하십시오. 하단의 코드 아래에 '수신 거부 버튼 만들기'옵션이 있습니다.

버튼을 만들고 코드를 복사하십시오. 웹 앱에 붙여 넣기하십시오. 너는 가야한다. 여기

은 ---

<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top"> 
    <input type="hidden" name="cmd" value="_s-xclick"> //custom variable. You can access it like $_POST['cmd'] when you call listener (IPN) 
    <input type="hidden" name="hosted_button_id" value="*********"> 
    <input type="hidden" name="custom" value="<?php echo $_SESSION['user']['id']; ?>"> 
    <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_subscribeCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"> 
    <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1"> 
</form> 

숨겨진 값으로 버튼 작성자 코드 그리고 여기 구독 취소 버튼에 대한 코드입니다. 구독 취소 버튼을 만들면 동일한 코드가 생성됩니다. 그냥 ****** 어떤 값으로 대체됩니다.

<a HREF="https://www.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=*******"> 
    <img SRC="https://www.paypalobjects.com/en_US/i/btn/btn_unsubscribe_LG.gif" BORDER="0"> 
</a> 
+0

아니요, 실제로 양식과 함께 user_id 등의 정보를 보내고 싶습니다. 그래서 내가 가진 것처럼 사용자 지정 양식을 만들 수 있습니다. –

+0

@ Pankaj Sharma 아니요. 잘못된 정보가 있습니다. subscri 버튼 코드를 통해서도 user_id를 보낼 수 있습니다. 지금 당신이 숨겨진 필드를 보내고있는 것처럼. Smead this like user3831445

+0

일부 코드를 공유하여 버튼으로 숨겨진 값을 전달하는 방법을 볼 수 있습니까? 발전기? –