| 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/ns/ |
Upload File : |
<html>
<?php
session_start();
include('db.php');
//include('function.php');
?>
<?php
if(isset($_SESSION['id']))
{
//$_SESSION['email']=$user_email;
$my_id = $_SESSION['id'];
//echo"$my_id";
}
if(isset($_GET['db_id3'])){
$user_id = $_GET['db_id3'];
}
?>
<div style="display:none;">
<input type="text" id="my_id" class="helping_id" style="display:none;" value="<?php echo $my_id;?>">
<?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
*/
?>
<input type="text" id="country_user" class="helping_id" style="display:none;" value="<?php echo $country;?>">
<input type="text" id="region_user" class="helping_id" style="display:none;" value="<?php echo $region;?>">
<input type="text" id="city_user" class="helping_id" style="display:none;" value="<?php echo $city;?>">
<input type="text" id="ip_user" class="helping_id" style="display:none;" value="<?php echo $user_ip;?>">
<?php
$curr_day = date("d");
$curr_month = date("m");
$curr_year = date("Y");
?>
</div>
<head>
<title>sn real estate</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="main_css/receipt_list.css" />
</head>
<body id="body">
<button onClick="history.back();" class="back_bnt" >Back</button>
<a href="logout"><button class="logout_btn" >Logout</button></a>
<?php
$get_rent_receipt ="select * from rent_receipttb where user_id='$user_id'";
$run_rent_receipt = mysqli_query($con,$get_rent_receipt);
while($row_rent_receipt = mysqli_fetch_array($run_rent_receipt))
{
$receipt_no = $row_rent_receipt['receipt_no'];
$receipt_date = $row_rent_receipt['receipt_date'];
$tenant_name = $row_rent_receipt['tenant_name'];
$amount = $row_rent_receipt['amount'];
$for_the_month = $row_rent_receipt['for_the_month'];
$balance = $row_rent_receipt['balance'];
$rented_block = $row_rent_receipt['rented_block'];
?>
<div class="main_content_div" >
<div class="receipt_title_name" >SN REAL ESTATE</div>
<div class="receipt_title_location" >MAGERE</div>
<div class="receipt_title_contact" >TEL: +256751045153</div>
<div class="receipt_title_rent" >RENTAL RECEIPT</div>
<div class="receipt_output_small_one" style="color:red;" >NO: <?php echo $receipt_no ?></div>
<div class="receipt_output_small_two" ><span style='float:left;text-align:left;margin-left:10px;font-weight:bold;backgroundk:red;'>Date:</span> <?php echo $receipt_date ?></div>
<div class="receipt_output" ><span style='float:left;text-align:left;margin-left:10px;font-weight:bold;backgroundk:red;'>Recieved From:</span> <?php echo $tenant_name ?></div>
<div class="receipt_output" ><span style='float:left;text-align:left;margin-left:10px;font-weight:bold;backgroundk:red;'>Amount :</span> Shs <?php echo $amount ?>/=</div>
<div class="receipt_output" ><span style='float:left;text-align:left;margin-left:10px;font-weight:bold;backgroundk:red;'>For The Month of:</span> <?php echo $for_the_month ?> / <?php echo $curr_year; ?></div>
<div class="receipt_output_small_one" ><?php echo $rented_block ?></div>
<div class="receipt_output_small_two" ><span style='float:left;text-align:left;margin-left:10px;font-weight:bold;backgroundk:red;'>Balance:</span> <?php echo $balance ?></div>
<div class="receipt_output_small_one" >Cash</div>
</div>
<?php } ?>
<!--div class="main_content_div" >
<div class="receipt_title_name" >SN REAL ESTATE</div>
<div class="receipt_title_location" >MAGERE</div>
<div class="receipt_title_contact" >TEL: +256751045153</div>
<div class="receipt_title_rent" >RENTAL RECEIPT</div>
<div class="receipt_output_small_one" style="color:red;" >NO: 001</div>
<div class="receipt_output_small_two" >Date: 18/04/2022</div>
<div class="receipt_output" >Ankunda Anitah</div>
<div class="receipt_output" >Shs: 600000</div>
<div class="receipt_output" >For The Month of: May, June & July / 2022</div>
<div class="receipt_output_small_one" >Cash</div>
<div class="receipt_output_small_two" >Balance: none</div>
</div-->
</body>
</html>