JezK
Edit File: shipment.php
<?php include("header.php"); ?> <div class="container"> <div class="container mt-3 px-md-4 px-0"> <div class="row px-md-4 px-0"> <div class="tophead col-md-12"> <h5>Shipment Status</h5> </div> </div> </div> <div class="container "> <div class="table-responsive p-4 myquotation-table myquotation-table"> <table id="example" class="display bg-white tbl-border table-borderless ove" style="width:100% overflow-x"> <thead> <tr> <th>Warehouse Name</th> <th>Warehouse ID</th> <th>Request Type</th> <th>Reference Type</th> <th>Customer Name</th> <th>Customer Type</th> <th>Value</th> <th>Date</th> <th>Time</th> <th>Status</th> </tr> </thead> <tr> <td>Pallethouse</td> <td>2516</td> <td>Online</td> <td>Notice</td> <td>Robin</td> <td>Reguar</td> <td>2510</td> <td>-</td> <td>12:30AM</td> <td>Active</td> </tr> <tr> <td>Pallethouse</td> <td>2516</td> <td>Online</td> <td>Notice</td> <td>Robin</td> <td>Reguar</td> <td>2510</td> <td>-</td> <td>12:30AM</td> <td>Active</td> </tr> <tr> <td>Pallethouse</td> <td>2516</td> <td>Online</td> <td>Notice</td> <td>Robin</td> <td>Reguar</td> <td>2510</td> <td>-</td> <td>12:30AM</td> <td>Active</td> </tr> <tr> <td>Pallethouse</td> <td>2516</td> <td>Online</td> <td>Notice</td> <td>Robin</td> <td>Reguar</td> <td>2510</td> <td>-</td> <td>12:30AM</td> <td>Active</td> </tr> </table> </div> </div> <div class="container position-relative"> <div class="row export_csv"> <div class="col-md-3 offset-md-9 "> <button id="export" class="btn btn-primary"><i class="fa fa-download"></i><span class="pl-2">EXPORT.CSV</span></button> </div> </div> </div> </div> <!-- footer --> <?php include("footer.php"); ?> <!-- <script src="js/jquery.min.js"></script> --> <!-- <script src="js/jquery.pagination.min.js"></script> --> <!----> <script> let $ =jQuery; $(document).ready(function() { $('#example').DataTable( { language: { search: "", searchPlaceholder:"search" }, "processing": true, "dataSrc": "", "sDom": 'Rfrtlip', } ); } ); </script>