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

Payment Script Modification via Automatic PIX

yuriowns

New Member
Joined
Aug 26, 2020
Messages
6
Reaction score
3
Hello people, all right? I need to implement the automatic PIX script, can anyone help me? I already have the system here.

Mercadopago.php:

// Supondo que o ID do pagamento seja $payment->id e o ID do usuário seja $user_id
// e que a conexão com o banco de dados já esteja estabelecida
// Calcular a quantidade de pontos ganhos
$points = 100 * $payment->transaction_amount / 10;
// Atualizar o registro do pagamento com a quantidade de pontos ganhos
$query = "UPDATE payments SET points = $points WHERE id = $payment->id AND user_id = $user_id";
$result = mysqli_query($conn, $query);
// Verificar se a atualização foi bem-sucedida
if ($result) {
echo 'Pagamento registrado com sucesso!';
} else {
echo 'Erro ao registrar o pagamento';
}
 
Last edited:
Back
Top