G:
/
PleskVhosts
/
seeonsoft.com
/
hp.thefalconunited.com
/
up file
home
<?php include("innerpageheader.php"); include("config.php"); $result = $js->query('SELECT * FROM `organization` ORDER BY `id`'); $result->execute(); ?> <!-- ===========Innerpage-wrapper============= --> <section> <div class="content listing-content"> <div class="in-content-wrapper"> <div class="row no-gutters"> </div><!-- end row --> <!-- Begin Page Content --> <div class="container-fluid"> <!-- Page Heading --> <h1 class="h3 mb-2 text-gray-800">Branches</h1> <p class="mb-4">If your company has multiple branches or locations, you can create branch offices</p> <div class="box"> <div class="row no-gutters"> <div class="col-auto me-auto text-start pe-0"> <div class="add-new"> <a href="branches.php" class="btn btn-secondary btn-icon-split"> <span class="icon text-white-50"> <i class="fas fa-arrow-right"></i> </span> <span class="text">Manage Branch</span> </a> </div> </div> <div class="row no-gutters"> <div class="col-12 table-responsive"> <table id="example" class="table table-hover responsive listing"> <thead> <tr> <th>Name</th> <th>Head Office</th> <th>CR No</th> <th>PO Box</th> <th>Postal Code</th> <th>Location</th> <th>Bank Details</th> <th>Mobile No</th> <th>Email</th> <th>Owner</th> <th>Website</th> </tr> </thead> <!-- <tfoot> --> <!-- <tr> --> <!-- <th>Name</th> --> <!-- <th>Address</th> --> <!-- <th>Location</th> --> <!-- <th>Contact Person</th> --> <!-- <th>Mobile No</th> --> <!-- <th>Email</th> --> <!-- </tr> --> <!-- </tfoot> --> <tbody> <?php while($row = $result->fetch(PDO::FETCH_ASSOC)) { $orgid = $row['orgid']; $orgname = $row['orgname']; $ho = $row['orgho']; $crno = $row['crno']; $pobox = $row['pobox']; $pc = $row['pcode']; $loc = $row['orgloc']; $mob = $row['orgmob']; $email = $row['orgemail']; $owner = $row['orgowner']; $web = $row['orgwebsite']; echo "<tr>"; echo "<td>$orgname</td>"; echo "<td>$ho</td>"; echo "<td>$crno</td>"; echo "<td>$pobox</td>"; echo "<td>$pc</td>"; echo "<td>$loc</td>"; echo "<td><a href='add_bankdetails.php?orgid=$orgid' class='btn btn-warning btn-circle'><i class='fas fa-plus'></i></td>"; echo "<td>$mob</td>"; echo "<td>$email</td>"; echo "<td>$owner</td>"; echo "<td>$web</td>"; echo "</tr>"; } ?> </tbody> </table> </div> </div> </div> </div> <!-- /.container-fluid --> </div> <!-- End of Main Content --> <!-- Optional JavaScript, Not optional it's need too --> <!-- jQuery first, then Popper.js, then Bootstrap JS --> <script src="js/jquery-3.3.1.min.js"></script> <script src="js/popper.min.js"></script> <script src="js/bootstrap-5.3.2.min.js"></script> <script src="vendors/datatables/datatables.min.js"></script> <script src="js/customscriptfile.js"></script> <!-- Page Scripts Ends --> <script> $(document).ready(function () { $('#example').DataTable(); }); </script> </body> </html>