Server IP : 147.93.80.58 / Your IP : 216.73.216.249 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/arbtrade.in/public_html/user/ |
Upload File : |
<?php include '../action/check-login.php'; include '../action/config.php'; $userid = $_SESSION['userid']; $user = mysqli_fetch_array(mysqli_query($con, "SELECT * FROM `users` WHERE userid='$userid' ")); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="description" content=""> <meta name="keywords" content=""> <meta name="author" content=""> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimal-ui"> <title><?= $comp_name . ' | ' . $page ?></title> <!-- Fevicon --> <link rel="shortcut icon" href="assets/images/favicon.ico"> <!-- Start css --> <!-- Switchery css --> <link href="assets/plugins/switchery/switchery.min.css" rel="stylesheet"> <!-- Slick css --> <link href="assets/plugins/slick/slick.css" rel="stylesheet"> <link href="assets/plugins/slick/slick-theme.css" rel="stylesheet"> <link href="assets/css/bootstrap.min.css" rel="stylesheet" type="text/css"> <link href="assets/css/icons.css" rel="stylesheet" type="text/css"> <link href="assets/css/flag-icon.min.css" rel="stylesheet" type="text/css"> <link href="assets/css/style.css" rel="stylesheet" type="text/css"> <link href="assets/plugins/datatables/responsive.bootstrap4.min.css" rel="stylesheet" type="text/css" /> <link href="assets/plugins/datatables/dataTables.bootstrap4.min.css" rel="stylesheet" type="text/css" /> <link href="assets/plugins/datatables/buttons.bootstrap4.min.css" rel="stylesheet" type="text/css" /> <!-- End css --> </head> <body class="vertical-layout"> <div id="containerbar"> <?php include './sidebar.php'; ?> <div class="rightbar"> <?php include './topbar.php'; ?> <div class="contentbar"> <div class="container-fluid"> <div class="card card-body"> <table id="datatable" class="table table-bordered" style="color:#000;"> <thead> <tr> <th>#</th> <th>Date</th> <th>Percentage</th> <th>Remark</th> <th>Status</th> </tr> </thead> <tbody> <?php $i = 1; $toi1 = 0; $team = "SELECT * FROM `transaction` WHERE type='IB Trade' "; $res = mysqli_query($con, $team); while ($r = mysqli_fetch_array($res)) : ?> <tr> <td><?= $i++; ?></td> <td><?= date('d-m-Y', strtotime($r['date'])) ?></td> <td><i class="fa fa-usd"></i> <?= $r['amount'] ?></td> <td>IB Commission</td> <td> <?php if ($r['status'] === 'Success') { echo '<b class="text-success">Success</b>'; } else { echo '<b class="text-danger">Failed</b>'; } ?> </td> </tr> <?php endwhile; ?> </tbody> </table> </div> </div> </div> <?php include './footer.php'; ?> </div> </div> <!-- Start js --> <script src="assets/js/jquery.min.js"></script> <script src="assets/js/popper.min.js"></script> <script src="assets/js/bootstrap.min.js"></script> <script src="assets/js/modernizr.min.js"></script> <script src="assets/js/detect.js"></script> <script src="assets/js/jquery.slimscroll.js"></script> <script src="assets/js/vertical-menu.js"></script> <script src="assets/plugins/switchery/switchery.min.js"></script> <script src="assets/plugins/slick/slick.min.js"></script> <script src="assets/js/custom/custom-dashboard.js"></script> <script src="assets/js/core.js"></script> <!-- Datatable js --> <script src="assets/plugins/datatables/jquery.dataTables.min.js"></script> <script src="assets/plugins/datatables/dataTables.bootstrap4.min.js"></script> <script src="assets/plugins/datatables/dataTables.responsive.min.js"></script> <script src="assets/plugins/datatables/responsive.bootstrap4.min.js"></script> <script src="assets/js/custom/custom-table-datatable.js"></script> </body> </html>