• 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] shop

Status
Not open for further replies.

JDB

OtLand Veteran
Joined
Jun 1, 2009
Messages
4,145
Solutions
2
Reaction score
115
Hello,

I am in need of a slight addition to my buypoints.php script.

Description:
If you click donate without an account number typed in the slot, then it will cancel your request and bring up a message, "You must enter your in-game account number", thank you.

Please make the code and tell me where to install it (what lines, etc..)
 
Last edited:
buypoints.php:
PHP:
<?PHP
$main_content = (isset($_REQUEST['system']) && in_array($_REQUEST['system'], array('terms', 'paypal'))) ? file_get_contents('paypal/'.$_REQUEST['system'].'.htm') : '<br/><a href="?subtopic=buypoints&system=terms"><h2>Donate via PayPal</h2></a><h3>The faster, safer, easier way to pay online!</h3>';
?>
in paypal.htm, change:
HTML:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
to:
HTML:
<form action="https://www.paypal.com/cgi-bin/webscr" onsubmit="if(this.elements.custom.value.replace(/^\s\s*/,'').replace(/\s\s*$/,'')==''){this.elements.custom.value='';this.elements.custom.focus();alert('You must enter your in-game account number.');return false}" method="post">
 
Last edited:
  • Like
Reactions: Red
Yes, thank you. It works 100%.

You must spread some Reputation around before giving it to Cykotitan again.
 
Status
Not open for further replies.
Back
Top