Your IP : 216.73.216.26


Current Path : /home2/wtmwscom/public_html/admin/
Upload File :
Current File : /home2/wtmwscom/public_html/admin/process_payout_withdraw.php

<?php session_start();
include "../connection.php";
if(!isset($_SESSION['adminid'])) die ('Unauthorized');
$recid = $_GET['recid'];
$isupdate = mysqli_query($connection, "UPDATE withdraw SET status = 1 WHERE recid = '$recid'");
$msg = $isupdate ? "Transcation done successfully" : "Failed, Some error occured,Try again";
echo $msg;
?>