if (isset($_GET['pstatus'])) {
switch ($_GET['pstatus']) {
case 'success':
MessageSend(3, 'Оплата успешно завершена, спасибо за покупку!', 'index.php');
break;
case 'waiting':
MessageSend(2, 'Оплата не завершена, ожидание платежа...', 'index.php');
break;
case 'fail':
MessageSend(1, 'Платёж отменён.', 'index.php');
break;
}
}
<?php for ($i = 0; $i < count($config['servers']); $i++) { ?>
<button onclick="selectServer(<?php echo $i; ?>)" id="server<?=$data['i'];?>" class="red">
<i class="icon chevron-right"></i> Сервер: <?php echo $config['servers'][$i]['name']; ?>
</button>
<?php } ?>
вторая часть выводится форма<form action="payment.php" method="POST" id="server<?=$data['i'];?>" class="block row justify-content-center" data-toggle="validator" data-delay="200" autocomplete="off" style="display: none;">
<div class="content">
<h1>Покупка доната на сервере #<?=$data['i'];?></h1>
<!-- Раскоментировать для двух и более серверов. Добавить в форму выше стиль style="display: none;"-->
<p id="selectMenu">
<button type="button" onclick="selectMenu();" class="red">
<i class="icon arrow-left"></i> Вернуться к выбору сервера
</button>
</p>
<input type="text" id="username" name="username" placeholder="Никнейм" pattern="^<?=U_REGEXP;?>$" maxlength="20" minlength="5" required>
<select id="selid" name="selid" required>
<option selected disabled>Выберите товар</option>
<?=$data['goods'];?>
</select>
<input type="hidden" name="server" value="<?=$data['i'];?>">
<select style="display: none;" id="merchant" name="merchant">
<?=$data['merchants'];?>
</select>
</div>
<div class="footer row justify-content-center">
<div class="content">
<button class="red" type="submit" name="dosubm">КУПИТЬ</button>
<div class="text">Нажимая на кнопку, вы соглашаетесь
<br>с <a href="/rules" target="_blank">правилами сервера</a></div><br>
</div>
</div>
</form>
<div class="block row justify-content-center server-select">
<div class="content">
<h1>Выберите сервер, на котором<br>
хотите купить донат</h1>
<?php for ($i = 0; $i < count($config['servers']); $i++) { ?>
<button onclick="selectServer(<?php echo $i; ?>)" id="server<?=$data['i'];?>" class="red">
<i class="icon chevron-right"></i> Сервер: <?php echo $config['servers'][$i]['name']; ?>
</button>
<?php } ?>
</div></div>
Думаю XenForo 2 не пока-что не знаю...