• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved Adding options to PayPal script.

Joined
Sep 24, 2012
Messages
605
Reaction score
33
Location
Netherlands
Hello guys,

Im struggeling with the stupid paypal script, i did it before and then it worked fine but in some weird way, if i add more options the website go's down.

here is my Paypal.php

PHP:
<?php
$paypal_report_url = 'http://*************/paypal_report.php';
$paypal_return_url = 'http://***************/?subtopic=shopsystem';
$paypal_image = 'https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif';
$paypal_payment_type = '_xclick'; // '_xclick' (Buy Now) or '_donations'

$paypals[0]['mail'] = '****************'; // your paypal login
$paypals[0]['name'] = '300 premium points on server ***** for 10.00 EURO';
$paypals[0]['money_amount'] = '10.00';
$paypals[0]['money_currency'] = 'EUR'; // USD, EUR, more codes: https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_nvp_currency_codes
$paypals[0]['premium_points'] = 300;

now the simple question is;
How do i add more points :$ i know its a simple thing, but im breaking my head over it rofl!!!

Thanks in advance.
Rep+ for the person who helps.
 
Last edited:
I haven't tested it myself but it's usually like this. :p

PHP:
$paypals[0]['mail'] = '****************'; // your paypal login 
$paypals[0]['name'] = '300 premium points on server ***** for 10.00 EURO'; 
$paypals[0]['money_amount'] = '10.00'; 
$paypals[0]['money_currency'] = 'EUR'; // USD, EUR, more codes: https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_nvp_currency_codes 
$paypals[0]['premium_points'] = 300;

$paypals[1]['mail'] = '****************'; // your paypal login 
$paypals[1]['name'] = '300 premium points on server ***** for 10.00 EURO'; 
$paypals[1]['money_amount'] = '10.00'; 
$paypals[1]['money_currency'] = 'EUR'; // USD, EUR, more codes: https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_nvp_currency_codes 
$paypals[1]['premium_points'] = 300;

$paypals[2]['mail'] = '****************'; // your paypal login 
$paypals[2]['name'] = '300 premium points on server ***** for 10.00 EURO'; 
$paypals[2]['money_amount'] = '10.00'; 
$paypals[2]['money_currency'] = 'EUR'; // USD, EUR, more codes: https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_nvp_currency_codes 
$paypals[2]['premium_points'] = 300;
 
Back
Top