JezK
Edit File: receivedTransactionDetails.php
<?php // include("./app/checkSession.php"); //if(empty($_SESSION['name'])&&$_SESSION['name']==""){ // echo "<script>window.location.href='index.php'</script>"; // } include("header.php"); ?> <div id="received-transaction-table" class="container first-position myquotation-table"> <div class="container mt-3 "> <div class="row px-md-4 px-0"> <div class="tophead col-md-4"> <a href="agarwalPackersView.php"><img src="images/back_main.png"></a> <h6 class="mt-4"><a href="onhandstockView.php" class="text-dark"></a>Received Transaction Details</h6> </div> </div> </div> <div class="container mt-3 white-shadow-block"> <div class="row"> <div class="col-sm-6"> <div class="row"> <div class="col-sm-12"> <div class="col-sm-5"><strong>Quotation ID</strong></div> <div class="col-sm-2">:</div> <div class="col-sm-5">1</div> </div> <div class="col-sm-12 mt-2"> <div class="col-sm-5"><strong>Customer Name</strong></div> <div class="col-sm-2">:</div> <div class="col-sm-5">Test</div> </div> <div class="col-sm-12 mt-2"> <div class="col-sm-5"><strong>Email ID</strong></div> <div class="col-sm-2">:</div> <div class="col-sm-5">Example@gmail.com</div> </div> </div> </div> <div class="col-sm-6"> <div class="row"> <div class="col-sm-12"> <div class="col-sm-5"><strong>Advance Shipment ID</strong></div> <div class="col-sm-2">:</div> <div class="col-sm-5">2</div> </div> <div class="col-sm-12 mt-2"> <div class="col-sm-5"><strong>Country</strong></div> <div class="col-sm-2">:</div> <div class="col-sm-5">test</div> </div> <div class="col-sm-12 mt-2"> <div class="col-sm-5"><strong>City</strong></div> <div class="col-sm-2">:</div> <div class="col-sm-5">test</div> </div> </div> </div> </div> </div> <div class="container mt-2"> <div class="table-responsive p-md-4 p-0 position-relative blue-clr-table"> <h6 id="h6-recievedViewh6">Add Item Details</h6> <table id="example" class="display bg-white tbl-border table-borderless mt-1" style="width:100%"> <thead> <tr> <th>S.No</th> <th>Item Code</th> <th>Item Description</th> <th>Quantity</th> <th>Reference Number</th> <th>Cost</th> <th>Pallet No</th> <th>Row</th> <th>Rack</th> <th>Pin</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>5568f56</td> <td><a href="#" data-toggle="tooltip" data-placement="bottom" title="Lorem Ipsum is simply dummy text of the printing and typesetting industry" class="moretext-tooltip">Lorem Ipsum is simply dummy text of the printing and typesetting industry</a></td> <td>12</td> <td>255985-8995</td> <td>255$</td> <td>558985</td> <td>8</td> <td>2</td> <td>558985</td> </tr> <tr> <td>2</td> <td>5568f56</td> <td>Description</td> <td>12</td> <td>255985-8995</td> <td>255$</td> <td>558985</td> <td>8</td> <td>2</td> <td>558985</td> </tr> </tbody> </table> </div> </div> <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.XLSX</span></button> </div> </div> </div> <!-- footer --> <?php include("footer.php"); ?> <!-- <script src="js/jquery.min.js"></script> --> <!-- <script src="js/jquery.pagination.min.js"></script> --> <!----> <script> $(document).ready(function() { $('#example').DataTable( { language: { search: "", searchPlaceholder:"Search"}, dom: 'frtlip' } ); } ); </script>