| 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:/active_xampp_upgrade/cb_image/ |
Upload File : |
<html>
<?php
session_start();
include('db.php');
if(isset($_SESSION['my_id']))
{
$my_id = $_SESSION['my_id'];
}
?>
<div 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"];
$region = $geo["geoplugin_regionName"];
$country = $geo["geoplugin_countryName"];
/*echo"$user_ip";
echo "City: ".$city."<br>";
echo "Region: ".$region."<br>";
echo "Country: ".$country."<br>";
/*
geoplugin_request
geoplugin_status
geoplugin_credit
geoplugin_city
geoplugin_region
geoplugin_areaCode
geoplugin_dmaCode
geoplugin_countryCode
geoplugin_countryName
geoplugin_continentCode
geoplugin_latitude
geoplugin_longitude
geoplugin_regionCode
geoplugin_regionName
geoplugin_currencyCode
geoplugin_currencySymbol
geoplugin_currencySymbol_UTF8
geoplugin_currencyConverter
*/
?>
</div>
<head>
<title>crane blue studio</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--link rel="icon" href="kvt_con/khalaf_log.jpg" type="image/ico"-->
<link rel="stylesheet" type="text/css" href="main_css/transaction.css" />
</head>
<input type="text" id="my_id" value="<?php echo"$my_id";?>" style="display:none;" />
<body>
<?php
if(!isset($_SESSION['my_id']))
{
echo"<script>window.open('login','_self')</script>";
}else{
?>
<div class="home_div" >
<img src="main_icon/back_btn.png"onClick="history.back();" class="back_img" />
<span id="user_name" class="user_name" >Tinimum</span>
</div><!--end of login_div-->
<div class="main_continer" >
<div class="bal_div" >
<span class="bal_lebal" >TOTAL BALANCE</span>
<span class="bal_output" >UGX <span id="bnk_amt_output" ></span></span>
</div>
<button class="bal_btn" >Buy</button>
<button class="bal_btn" >Transfer</button>
</div><!--end of login_div-->
<span class="bal_tips" >The minimum transfer is Ugx 10000</span>
<span id="sifa" class="bal_tips" style="color:red;display:none;" >Your account will be frozen for trying to cheat the system</span>
<span class="bal_tips" >Referral code:<span id="referral_code_output" style='font-weight:bold;color:#4BFAB2;' ></span></span>
<div class="trans_history_div" >
<span class="history_lebal" >DATE</span>
<span class="history_lebal" >TRANSACTION</span>
<span class="history_lebal" >AMOUNT</span>
<span id="history_output" ></span>
<!--span class="history_output" >Referral</span>
<span class="history_output" >250</span>
<span class="history_output" >27-06-2024</span>
<span class="history_output" >Deposit</span>
<span class="history_output" >150</span>
<span class="history_output" >27-06-2024</span>
<span class="history_output" >Transfer</span>
<span class="history_output" >5000</span-->
</div>
<?php } ?>
<script>
sifa();
function sifa()
{
my_id = document.getElementById('my_id').value;
if(my_id=='CB133' || my_id=='CB207'|| my_id=='CB268' ){ document.getElementById('sifa').style.display="block"; }
}
disp_bnk_amt();
function disp_bnk_amt()
{
my_id = document.getElementById('my_id').value;
xmlhpttp = new XMLHttpRequest();
xmlhpttp.open("GET","auto_page.php?my_id="+my_id+"&&status=disp_bnk_amt",false);
xmlhpttp.send(null);
document.getElementById('bnk_amt_output').innerHTML =xmlhpttp.responseText;
}
disp_user();
function disp_user()
{
my_id = document.getElementById('my_id').value;
xmlhpttp = new XMLHttpRequest();
xmlhpttp.open("GET","auto_page.php?my_id="+my_id+"&&status=disp_user",false);
xmlhpttp.send(null);
document.getElementById('user_name').innerHTML =xmlhpttp.responseText;
}
disp_referral();
function disp_referral()
{
my_id = document.getElementById('my_id').value;
xmlhpttp = new XMLHttpRequest();
xmlhpttp.open("GET","auto_page.php?my_id="+my_id+"&&status=disp_referral",false);
xmlhpttp.send(null);
document.getElementById('referral_code_output').innerHTML =xmlhpttp.responseText;
}
disp_trans_history();
function disp_trans_history()
{
my_id = document.getElementById('my_id').value;
xmlhpttp = new XMLHttpRequest();
xmlhpttp.open("GET","auto_page.php?my_id="+my_id+"&&status=disp_trans_history",false);
xmlhpttp.send(null);
document.getElementById('history_output').innerHTML =xmlhpttp.responseText;
}
</script>
</body>
</html>