prepare("INSERT INTO fiat_orders (user_id, amount, currency, status, created_at) VALUES (?, ?, ?, 'pending', CURRENT_TIMESTAMP)"); $stmt->execute([$user_id, $amount, $currency]); $order_id = db()->lastInsertId(); // Notify CS via messages table $msg = "New deposit order #$order_id: $amount $currency. Please provide bank account details."; $stmt = db()->prepare("INSERT INTO messages (user_id, sender, message) VALUES (?, 'user', ?)"); $stmt->execute([$user_id, $msg]); header("Location: matching.php?order_id=" . $order_id); exit; } if (!$order_id) { header("Location: deposit.php"); exit; } // Fetch order $stmt = db()->prepare("SELECT * FROM fiat_orders WHERE id = ? AND user_id = ?"); $stmt->execute([$order_id, $user_id]); $order = $stmt->fetch(); if (!$order) { header("Location: deposit.php"); exit; } // Handle Proof Upload if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_FILES['proof'])) { $file = $_FILES['proof']; $ext = pathinfo($file['name'], PATHINFO_EXTENSION); $filename = 'proof_' . $order_id . '_' . time() . '.' . $ext; $target = 'assets/images/proofs/' . $filename; if (!is_dir('assets/images/proofs/')) mkdir('assets/images/proofs/', 0775, true); if (move_uploaded_file($file['tmp_name'], $target)) { $stmt = db()->prepare("UPDATE fiat_orders SET proof_image = ?, status = 'submitting' WHERE id = ?"); $stmt->execute(['assets/images/proofs/' . $filename, $order_id]); header("Location: matching.php?order_id=" . $order_id); exit; } } ?>

Tip: You can also contact Online Support for faster processing.

Account Matched Successfully

Please complete the transfer to the following account.

BANK ACCOUNT DETAILS

Important Instructions

  • Please transfer the exact amount:
  • Include your UID in the transfer remarks.
  • Take a screenshot of the successful transfer.
Click to select or drag and drop image

Deposit Under Review

Your payment proof has been submitted successfully. Our team will verify the transaction and update your balance within 30 minutes.

Back to Assets Contact Support