2017-03-18 7 views
0

私には以下の問題があります。PayPalはidsを与えません

私は自分のウェブサイトにPaypalを統合しました。今、私はPayPalの設定をテストしたいと思います。私はサンドボックス環境でテストします。したがって、支払いは非常にうまくいっています。支払い後、サイトは私のsuccess.phpサイトにリダイレクトされます。 そこに問題があります。 Normalyそれはmywebsite.de/success.php?tx=83437E384950D&st=Completed&amt=10.00&cc=USD&cm=&item_number=1

のようなものを示さなければならないが、それは私だけのためのPayPalのinvformationを得るのですかどのように私のコードは、私間違った手をやった。この

paypalURL = 'https://www.sandbox.paypal.com/cgi-bin/webscr'; //Test PayPal API URL 
$paypalID = '[email protected]'; //Business Email 
        <center><form action="<?php echo $paypalURL; ?>" method="post"> 
    <!-- Identify your business so that you can collect the payments. --> 
    <input type="hidden" name="business" value="<?php echo $paypalID; ?>"> 

    <!-- Specify a Buy Now button. --> 
    <input type="hidden" name="cmd" value="_xclick"> 

    <!-- Specify details about the item that buyers will purchase. --> 
    <input type="hidden" name="item_name" value="1 Monat Premium Mitgliedschaft"> 
    <input type="hidden" name="item_number" value="1"> 
    <input type="hidden" name="amount" value="49.99"> 
    <input type="hidden" name="currency_code" value="EUR"> 

     <!-- Specify URLs --> 
    <input type='hidden' name='cancel_return' value='http://mywebsite.de/index.php'> 
    <input type='hidden' name='return' id='return' value='http://mywebsite.de/success.php/'> 

    <!-- Display the payment button. --> 
    <input type="image" name="submit" border="0" 
    src="https://www.paypalobjects.com/de_DE/DE/i/btn/btn_buynowCC_LG.gif" alt="PayPal - The safer, easier way to pay online"> 
    <img alt="" border="0" width="1" height="1" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" > 
        </form></center> 

のように見えます

mywebsite.de/success.php 

示して私の成功ページ?

答えて

関連する問題