PATH: //proc/thread-self/cwd/m
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 .htaccess
↓
X
📄 arcade.php
↓
X
📄 callback.php
↓
X
📄 callback.php#
↓
X
📄 casino.php
↓
X
📄 create_pp.php
↓
X
📄 deposit.php
↓
X
📄 error_log
↓
X
📄 history.php
↓
X
📄 history.php#
↓
X
📄 history_ajax.php
↓
X
📄 index.php
↓
X
📄 logout.php
↓
X
📄 maintenance.php
↓
X
📄 memo.php
↓
X
📄 password.php
↓
X
📄 payment.php
↓
X
📄 refferal.php
↓
X
📄 rekening.php
↓
X
📄 slots.php
↓
X
📄 sports.php
↓
X
📄 togel.php
↓
X
📄 withdraw.php
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: create_pp.php
<?php include('config/koneksi.php'); $sql_provider = mysqli_query($conn,"SELECT * FROM `tb_tripayapi` WHERE cuid = 1") or die(mysqli_error()); $sp = mysqli_fetch_array($sql_provider); $urlRequest = $sp['urlRequest']; $secureLogin = $sp['api_key']; //apikey $secretKey = $sp['secret_key']; //brandID $getUser = mysqli_query($conn,"SELECT * FROM `tb_user` WHERE level = 'user' ORDER BY cuid ASC") or die(mysqli_error()); while($gu = mysqli_fetch_array($getUser)){ $userID = $gu['cuid']; $extplayer = $gu['extplayer']; $params = 'currency=IDR&externalPlayerId='.$extplayer.'&secureLogin='.$secureLogin.$secretKey; $hashNeed = md5($params); $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => $urlRequest.'IntegrationService/v3/http/CasinoGameAPI/player/account/create', CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => "POST", CURLOPT_POSTFIELDS => "secureLogin=".$secureLogin."&externalPlayerId=".$extplayer."¤cy=IDR&hash=".$hashNeed, CURLOPT_HTTPHEADER => array( "Content-Type: application/x-www-form-urlencoded", "Cache-Control: no-cache" ), )); $response = curl_exec($curl); echo $response; curl_close($curl); $hasil = json_decode($response, true); $PlayerId = $hasil['playerId']; $inserPlayer = mysqli_query($conn,"UPDATE `tb_ppplayer` SET `playerid` = '$PlayerId' WHERE externalPlayerId = '$extplayer'") or die(mysqli_error()); } ?>
SIMPAN PERUBAHAN