EVOLUTION-NINJA
Edit File: planning_yarn_details.php
<?php //include("menu.php"); ?> <!-- BEGIN CONTENT --> <div class="page-content-wrapper"> <div class="page-content"> <!-- BEGIN PAGE HEADER--> <h3 class="page-title"> Planning Yarn Details </h3> <?php $this->load->view('templates/nav_menu'); ?> <!-- END PAGE HEADER--> <!-- BEGIN DASHBOARD STATS --> <div class="portlet box blue-madison"> <div class="portlet-title"> <div class="caption"> <i class="fa fa-globe"></i>Yarn 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> Yarn Type </th> <th> Yarn Quality </th> <th> Yarn Denier </th> <th> Yarn Specification </th> <th> Hank Length </th> <th> Hank Wt. </th> <th> Kora Shrinkag </th> <th> Dyed Shrinkage </th> </tr> </thead> <tbody> <?php $count=1; foreach($getalldata as $getresult) { ?> <tr> <td><?php echo $count++; ?></td> <td><?php echo $getresult->yarnType; ?></td> <td><?php echo $getresult->yarnQuality; ?></td> <td></td> <td><?php echo $getresult->yarnSpecification; ?></td> <td><?php echo $getresult->hankLength; ?></td> <td><?php echo $getresult->hankWt; ?></td> <td></td> <td></td> </tr> <?php }?> </tbody> </table> </div> </div> <!-- END DASHBOARD STATS --> </div> </div> </div> <!-- End BEGIN CONTAINER --> <!-- BEGIN FOOTER -->