| Server IP : 127.0.0.1 / Your IP : 216.73.216.48 Web Server : Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12 System : Windows NT DESKTOP-3H4FHQJ 10.0 build 19045 (Windows 10) AMD64 User : win 10 ( 0) PHP Version : 8.2.12 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : D:/Desktop/cb_music/ |
Upload File : |
<html>
<head>
<title>Coblaa Music, Coblaa earn</title>
<link rel="icon" type="image/jpg" href="http://craneblue.com/coblaa/main_icon/coblaa_log.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="main_css/earn_control.css?v9" />
<meta name="google-adsense-account" content="ca-pub-4728417548940171"><!--gog ads -->
<!--script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4728417548940171"crossorigin="anonymous"></script><!-- ad unit -->
</head>
<span style="display:none;" >
<?php
$user_ip = getenv('REMOTE_ADDR');
$geo = unserialize(file_get_contents("http://www.geoplugin.net/php.gp?ip=$user_ip"));
$city = $geo["geoplugin_city"];
$country = $geo["geoplugin_countryName"];
//echo" mmm $user_ip";
$curr_day = date("d");
$curr_month = date("m");
$curr_year = date("Y");
?>
<input type="text" id="user_ip" value="<?php echo"$user_ip";?>" style="display:none;" />
<input type="text" id="user_city" value="<?php echo"$city";?>" style="display:none;" />
<input type="text" id="user_country" value="<?php echo"$country";?>" style="display:none;" />
<input type="text" id="curr_day" value="<?php echo"$curr_day";?>" style="display:none;" />
<input type="text" id="curr_month" value="<?php echo"$curr_month";?>" style="display:none;" />
<input type="text" id="curr_year" value="<?php echo"$curr_year";?>" style="display:none;" />
<?php
session_start();
include('db.php');
if(isset($_SESSION['my_id']))
{
$user_id = $_SESSION['my_id'];
}
?>
</span>
<input id="my_id" value="<?php echo $user_id ?>" style="display:none;" />
<input id="my_id" value="<?php echo $sg_edit ?>" style="display:none;" />
<input id="my_id" value="<?php echo $sg_del ?>" style="display:none;" />
<body id="boded" >
<div id="transaction_div" class="transaction_div">
<span class="transaction_title">Pending Transaction</span>
<span class="trans_history_lebal_span" >
<span class="transaction_lebal" style="width:15%;">Refno</span>
<span class="transaction_lebal">Trans type</span>
<span class="transaction_lebal">Coin Amt </span>
<span class="transaction_lebal" style="width:15%;">Status</span>
<span class="transaction_lebal">Wallet </span>
<span class="transaction_lebal" style="width:20%;">Date</span>
</span>
<span id="trans_history_output"></span>
</div>
<div id="trans_confirm_div" class="trans_confirm_div" >
<span class="sub_trans_confirm" stylek="width:15%;">
<span class="confirm_title" stylek="width:15%;">Confirm Transaction</span>
<input id="confirm_network_ref" class="confirm_input" />
<span id="confirm_pend_error" class="confirm_pend_error" ></span>
<button onClick="trans_confirm();" class="trans_confirm_btn" style="color:green;">Confirm</button>
<button onClick="close_trans_confirm_div();" class="trans_confirm_btn" style="color:red;">Cancel</button>
</span>
</div>
<script>
disp_pend_trans();
function disp_pend_trans()
{
my_id = document.getElementById('my_id').value;
xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET","autopage.php?my_id="+my_id+"&&status=disp_pend_trans",false);
xmlhttp.send(null);
document.getElementById('trans_history_output').innerHTML=xmlhttp.responseText;
}
function show_trans_confirm_div(stcd)
{
pending_trans_ref_no = stcd;
document.getElementById('trans_confirm_div').style="display:block;display:flex;justify-content:center;align-items:center;";
}
function close_trans_confirm_div()
{
document.getElementById('trans_confirm_div').style="display:none;";
disp_pend_trans();
}
function trans_confirm()
{
my_id = document.getElementById('my_id').value;
confirm_network_ref = document.getElementById('confirm_network_ref').value;
if(confirm_network_ref==""){alert("Fill in the fields");}else{
xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET","autopage.php?my_id="+my_id+"&&confirm_network_ref="+confirm_network_ref+"&&pending_trans_ref_no="+pending_trans_ref_no+"&&status=insert_trans_confirm",false);
xmlhttp.send(null);
document.getElementById('confirm_pend_error').innerHTML=xmlhttp.responseText;
document.getElementById('confirm_network_ref').value="";
}
}
</script>
</body>
</html>