Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
home
/
ynormeco
/
.trash
/
queenmatka
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/ynormeco/.trash/queenmatka/withdraw-fund-history.php
<?php include("inc/config.php"); $conn = connect_database(); session_start(); $memcode = isset($_COOKIE['memberlogin']) ? $_COOKIE['memberlogin'] : NULL; if(!isset($_COOKIE['memberlogin'])) { header("location: pages/logout.php"); exit; } $sql = mysqli_query($conn,"SELECT * FROM `tbl_register_member` where `mob` = '$memcode' "); if($row = mysqli_fetch_array($sql)) { $account_no = $row['account_no']; $ifsc_code = $row['ifsc_code']; $branch_name = $row['branch_name']; $holder_name = $row['holder_name']; $gpay = $row['gpay']; $paytm = $row['paytm']; $phonepay = $row['phonepay']; $upi = $row['upi']; } unset($_SESSION['janobecartmaster']); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Queen Matka</title> <meta name="viewport" content="width=device-width, initial-scale=1 maximum-scale=1 user-scalable=no"> <meta name="mobile-web-app-capable" content="yes"> <meta name="HandheldFriendly" content="True"> </head> <body style="background-color:#d2b60c; background-image:url('img/logo1.png'); font-family:sans-serif; padding:0px; margin:0px;" > <div style="width:100%; "> <table style="background-color:#FFFFFF; border:solid 0px #000; border-radius:5px; width:95%; margin-top:10px;" align="center" border="0"> <tr style="background-color:#00008B"> <td> <div align="left" style="color:#fff; font-size:18px; padding:10px; "> Withdraw Funds Statement</div> </td> </tr> <tr> <td style="line-height:15px;"><br></td> </tr> <tr style="width:100%; text-align:center; color:#000; font-family:sans-serif; line-height:22px; font-size:15px; padding:10px;"> <td> <table style="width:90%; border-collapse: collapse; margin:0 auto; border: 1px solid #ccc;" border="1" > <thead> <tr style="background-color:#ccc;"> <th scope="col" style="width:20%;">Sr. No.</th> <th scope="col" >Date</th> <th style="padding:10px;" >Withdraw Fund</th> </tr> </thead> <tbody> <?php $s = 0; $i = 1; $query = mysqli_query($conn,"select * from `tbl_member_withdraw` where `mob` = '$memcode' ORDER BY `srno` "); while($row = mysqli_fetch_array($query)) { echo "<tr>"; echo "<td style='padding:10px;'>".$i++."</td>"; echo "<td>".$row['idate']."</td>"; echo "<td >".$row['fund']."</td>"; echo "</tr>"; } ?> </tbody> </table> </td> </tr> <tr style="width:100%; text-align:center; height:40px;"> </tr> </table> </div> <br> <br><br> </body> </html>