PATH: /home/hwyuvbry/dear.waroenkhoki123.web.id
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 .htaccess
↓
X
📁 .vscode/
X
📁 .well-known/
X
📄 PlayGame.php
↓
X
📁 _next/
X
📄 about.php
↓
X
📄 account_balance.php
↓
X
📁 ajax/
X
📁 assets/
X
📄 auth-login.php
↓
X
📄 auth-register.php
↓
X
📄 callbackQRIS.php
↓
X
📄 carousel_slider.php
↓
X
📄 casino.php
↓
X
📁 cgi-bin/
X
📄 change-pasword.php
↓
X
📁 classes/
X
📄 deposit-progress.php
↓
X
📄 deposit.php
↓
X
📄 details-promo.php
↓
X
📄 details.php
↓
X
📄 egames.php
↓
X
📄 error_log
↓
X
📁 event/
X
📄 footer.php
↓
X
📄 fungsi_umum.php
↓
X
📄 game-popular.php
↓
X
📄 game-recomended.php
↓
X
📄 header.php
↓
X
📄 history-deposit.php
↓
X
📄 history-withdraw.php
↓
X
📄 home.php
↓
X
📄 htaccess-sc-nuke
↓
X
📄 hwyuvbry_blacky.sql
↓
X
📄 index.php
↓
X
📄 index.php##
↓
X
📄 kanvas.php
↓
X
📄 koneksi.php
↓
X
📄 kyc.php
↓
X
📄 logout.php
↓
X
📄 lottery.php
↓
X
📄 lucky-spin.php
↓
X
📄 my-account.php
↓
X
📄 otp.php
↓
X
📄 pragmatic-game.php
↓
X
📄 process_kyc.php
↓
X
📄 process_login.php
↓
X
📄 process_register.php
↓
X
📄 process_reset_password.php
↓
X
📄 promo.php
↓
X
📄 proses_deposit.php
↓
X
📄 qris-progress.php
↓
X
📄 qris.php
↓
X
📄 referal.php
↓
X
📄 rekening.php
↓
X
📁 rtp/
X
📄 setting.php
↓
X
📄 slot.php
↓
X
📄 sports.php
↓
X
📁 staff/
X
📁 svg/
X
📄 telegram_log.txt
↓
X
📄 test-api.php
↓
X
📁 topadmin/
X
📄 update_saldo.php
↓
X
📁 uploads/
X
📄 withdraw-progress.php
↓
X
📄 withdraw.php
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: process_kyc.php
<?php session_start(); include 'koneksi.php'; // Cek apakah pengguna sudah login if (!isset($_SESSION['loggedin']) || $_SESSION['loggedin'] !== true) { echo "<script>alert('Silakan login terlebih dahulu.'); window.location.href='login.php';</script>"; exit; } // Ambil ID anggota dari session $nama_anggota = $_SESSION['nama_pengguna_anggota']; // Ambil data pengguna dari database $stmt = $koneksi->prepare("SELECT email_anggota, telepon_anggota, kyc_status FROM anggota WHERE nama_pengguna_anggota = ?"); $stmt->bind_param("s", $nama_anggota); $stmt->execute(); $result = $stmt->get_result(); if ($result && $result->num_rows === 1) { $data = $result->fetch_assoc(); } else { echo "<script>alert('Pengguna tidak ditemukan.'); window.location.href='login.php';</script>"; exit; } // Proses pengiriman form KYC if ($_SERVER['REQUEST_METHOD'] == 'POST') { // Update status KYC $stmt = $koneksi->prepare("UPDATE anggota SET kyc_status = 2 WHERE nama_pengguna_anggota = ?"); $stmt->bind_param("s", $nama_anggota); if ($stmt->execute()) { echo "<script>alert('KYC berhasil diverifikasi.'); window.location.href='referal.php';</script>"; } else { echo "<script>alert('Gagal memperbarui status KYC.'); window.location.href='kyc.php';</script>"; } } ?>
SIMPAN PERUBAHAN