EVOLUTION-NINJA
Edit File: customer_details.php
<?php //include("menu.php"); ?> <!-- BEGIN CONTENT --> <div class="page-content-wrapper"> <div class="page-content"> <!-- BEGIN PAGE HEADER--> <h3 class="page-title"> Supplier Details </h3> <?php $this->load->view('templates/nav_menu'); ?> <!-- END PAGE HEADER--> <!-- BEGIN DASHBOARD STATS --> <form action="<?php echo base_url(); ?>dashboard/customer_master" method="post" class="form-horizontal"> <b>To insert data click here:</b> <input type="submit" name="Insert" value="Insert" /><br><br> </form> <div class="portlet box blue-madison"> <div class="portlet-title"> <div class="caption"> <i class="fa fa-globe"></i>Supplier details </div> <div class="tools"> <a href="javascript:;" class="reload"> </a> </div> </div> <div class="portlet-body"> <table class="table table-striped table-bordered table-hover" id="sample_1"> <thead> <tr> <th> Sr.No. </th> <th> Customer Type </th> <th> Customer Name </th> <th> Import File No. </th> <th> Address </th> <th> Country </th> <th> Mobile </th> <th> Phone </th> <th> Fax </th> <th> E-mail </th> <th> Website </th> <th> Contact Person </th> <th> Banker Name </th> <th> Banker Address </th> <th> Since From </th> <th> Purchase Type </th> </tr> </thead> <tbody> <?php $count=1; foreach($getalldata as $results) { ?> <tr> <td><?php echo $count++; ?></td> <td><?php echo $results->customer_type; ?></td> <td><?php echo $results->customer_name; ?></td> <td><?php echo $results->import_fileno; ?></td> <td><?php echo $results->address; ?></td> <td><?php echo $results->country; ?></td> <td><?php echo $results->mobile; ?></td> <td><?php echo $results->phone; ?></td> <td><?php echo $results->fax; ?></td> <td><?php echo $results->email; ?></td> <td><?php echo $results->website; ?></td> <td><?php echo $results->contact_person; ?></td> <td><?php echo $results->banker_name; ?></td> <td><?php echo $results->banker_address; ?></td> <td><?php echo $results->since_from; ?></td> <td><?php echo $results->purchase_type; ?></td> </tr> <?php }?> </tbody> </table> </div> </div> <!-- END DASHBOARD STATS --> </div> </div> </div> <!-- End BEGIN CONTAINER --> <!-- BEGIN FOOTER -->