Server IP : 147.93.80.58 / Your IP : 216.73.216.138 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 rel="stylesheet" href="https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.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 px-1"> <div class="container-fluid px-1 card"> <div class="table-responsive"> <table id="myTable" class="table table-striped" style="color:#000;"> <thead> <tr> <th>#</th> <th>Date</th> <!--<th>Investment</th>--> <th>Today Profit</th> <th>70% / 30%</th> <th>You Received</th> </tr> </thead> <tbody> <?php $i = 1; $toi1 = 0; $team = "SELECT * FROM `ib_trade_income` WHERE userid='$userid' AND type='IB Income' "; $res = mysqli_query($con, $team); while ($r = mysqli_fetch_array($res)) : $x = $r['amount']; $total_amount = $x / 0.70; ?> <tr> <td class="p-4"><?= $i++; ?></td> <td class="p-4"><?= date('d-m-Y', strtotime($r['date'])) ?></td> <!--<td class="p-4"><i class="fa fa-usd"></i> <?= $user['total_investment'] ?></td>--> <td class="p-4"><i class="fa fa-usd"></i> <?= $total_amount ?></td> <td class="p-4"><?= '$ '.($total_amount*0.7) .' / $ '. ($total_amount*0.3) ?></td> <td class="p-4"><i class="fa fa-usd"></i> <?= $r['amount'] ?></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="https://code.jquery.com/jquery-3.7.1.min.js"></script> <script src="https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js"></script> <script> $(document).ready(function() { $('#myTable').DataTable(); }); </script> </body> </html>