| 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:/xamppkk/htdocs-coblaa/cranepay/ |
Upload File : |
<html>
<?php
include('db.php');
session_start();
if(isset($_SESSION['id']))
{
$user_id = $_SESSION['id'];
}
////////////////////////////////////////////////////////////////////////////////////
?>
<head>
<title>crane pay</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="main_css/pending_withdraw.css" />
</head>
<body onclick="get_focused();" >
<div class="main_home_tile" ><img src="main_icon/back_btn.png" onclick="history.back()" class="main_icon_img" />Pending withdrawals</div>
<div class="contianer_div" >
<div class="order_lebal" >
<span class="sub_order_lebal" >Acc no.</span>
<span class="sub_order_lebal" >Acc name</span>
<span class="sub_order_lebal" >Amount</span>
<span class="sub_order_lebal" >Date</span>
</div>
<?php
$get_withd_amt ="select * from pending_withdrawtb";
$run_withd_amt = mysqli_query($con,$get_withd_amt);
while($row_withd_amt = mysqli_fetch_array($run_withd_amt ))
{
$phone_no = $row_withd_amt['account_no'];
$acc_name = $row_withd_amt['account_name'];
$withd_amt = $row_withd_amt['amount'];
$cur_date = $row_withd_amt['cur_date'];
$cur_month = $row_withd_amt['cur_month'];
$cur_year = $row_withd_amt['cur_year'];
?>
<div class="order_out" >
<span class="sub_order_out" ><?php echo"$phone_no"; ?></span>
<span class="sub_order_out" ><?php echo"$acc_name"; ?></span>
<span class="sub_order_out" ><?php echo"$withd_amt"; ?></span>
<span class="sub_order_out" ><?php echo"$cur_date-$cur_month-$cur_year"; ?></span>
</div>
<?php } ?>
</div>
<div class="main_button_div" >
<a href="index"><div class="main_button" >
<img src="main_icon/home.png" class="down_btn_icon_img" />
<div class="down_btn" >Home</div>
</div></a>
<a href="order"><div class="main_button_mid" >
<img src="main_icon/invest3.jpg" class="down_btn_icon_img" />
<div class="down_btn" >Invest</div>
</div></a>
<a href="dash"><div class="main_button_right" >
<img src="main_icon/profile3.jpg" class="down_btn_icon_img" />
<div class="down_btn" >Profile</div>
</div>
</div></a>
<body>
</html>