• 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!

Add 1 More page

Teddy

SweStream.se
Joined
Oct 2, 2008
Messages
3,797
Reaction score
10
Location
Sweden 172
hello my problem is that i have doapay and wanna add paypal i have script and all but i wanna add 1 more page's on my website here
61609415.jpg
 
Why not do it on the same page like this?
87863056.jpg


Open your buypoints.php
Replace
PHP:
if($config['daopay_active'])
$main_content .= '<br /><br /><a href="index.php?subtopic=buypoints&system=daopay"><h2>Pay with Call or SMS - LINK (DaoPay)</h2></a><h3>Send SMS (not for all countries) or call special number to donate and get points.</h3>';
With
PHP:
if($config['daopay_active'])
$main_content .= '<br /><br /><a href="http://narkia.servegame.org/paypal.htm"><h2>Pay with Credit Card - LINK (PayPal)</h2></a><h3>Pay with credit card or your PayPal account balance.</h3>';
if($config['daopay_active'])
$main_content .= '<br /><br /><a href="index.php?subtopic=buypoints&system=daopay"><h2>Pay with Call or SMS - LINK (DaoPay)</h2></a><h3>Send SMS (not for all countries) or call special number to donate and get points.</h3>';

Remember to change http://narkia.servegame.org/paypal.htm with the address to your paypal.htm file
 
PHP:
if($config['daopay_active'])
$main_content .= '<br /><br /><a href="http://narkia.servegame.org/paypal.htm"><h2>Pay with Credit Card - LINK (PayPal)</h2></a><h3>Pay with credit card or your PayPal account balance.</h3><br /><br /><a href="index.php?subtopic=buypoints&system=daopay"><h2>Pay with Call or SMS - LINK (DaoPay)</h2></a><h3>Send SMS (not for all countries) or call special number to donate and get points.</h3>';

Would work too ;)
 
PHP:
if($config['daopay_active'])
$main_content .= '<br /><br /><a href="http://narkia.servegame.org/paypal.htm"><h2>Pay with Credit Card - LINK (PayPal)</h2></a><h3>Pay with credit card or your PayPal account balance.</h3><br /><br /><a href="index.php?subtopic=buypoints&system=daopay"><h2>Pay with Call or SMS - LINK (DaoPay)</h2></a><h3>Send SMS (not for all countries) or call special number to donate and get points.</h3>';

Would work too ;)

Easier to just write 2 lines of codes, instead of rewriting the whole script to add a link.
 
Back
Top